print.css
1 2 #sidebar, 3 #menu-bar, 4 .nav-chapters, 5 .mobile-nav-chapters { 6 display: none; 7 } 8 9 #page-wrapper.page-wrapper { 10 transform: none; 11 margin-left: 0px; 12 overflow-y: initial; 13 } 14 15 #content { 16 max-width: none; 17 margin: 0; 18 padding: 0; 19 } 20 21 .page { 22 overflow-y: initial; 23 } 24 25 code { 26 background-color: #666666; 27 border-radius: 5px; 28 29 /* Force background to be printed in Chrome */ 30 -webkit-print-color-adjust: exact; 31 } 32 33 pre > .buttons { 34 z-index: 2; 35 } 36 37 a, a:visited, a:active, a:hover { 38 color: #4183c4; 39 text-decoration: none; 40 } 41 42 h1, h2, h3, h4, h5, h6 { 43 page-break-inside: avoid; 44 page-break-after: avoid; 45 } 46 47 pre, code { 48 page-break-inside: avoid; 49 white-space: pre-wrap; 50 } 51 52 .fa { 53 display: none !important; 54 }