github.com/Jeffail/benthos/v3@v3.65.0/website/src/theme/CookbookPage/styles.module.css (about) 1 .tableOfContents { 2 display: inherit; 3 max-height: calc(100vh - (var(--ifm-navbar-height) + 2rem)); 4 overflow-y: auto; 5 position: sticky; 6 top: calc(var(--ifm-navbar-height) + 2rem); 7 } 8 9 .tableOfContents::-webkit-scrollbar { 10 width: 7px; 11 } 12 13 .tableOfContents::-webkit-scrollbar-track { 14 background: #f1f1f1; 15 border-radius: 10px; 16 } 17 18 .tableOfContents::-webkit-scrollbar-thumb { 19 background: #888; 20 border-radius: 10px; 21 } 22 23 .tableOfContents::-webkit-scrollbar-thumb:hover { 24 background: #555; 25 } 26 27 @media only screen and (max-width: 996px) { 28 .tableOfContents { 29 display: none; 30 } 31 } 32 33 .header { 34 text-align: center; 35 } 36 37 .cookbookTitle { 38 font-size: 32pt; 39 } 40 41 .cookbookDescription { 42 margin: 0; 43 } 44 45 .cookbookTimeToRead { 46 color: var(--ifm-blockquote-color); 47 } 48 49 .cookbookContainer { 50 --ifm-container-width: 800px; 51 --ifm-container-width-xl: 1000px; 52 }