mdBook/src/theme/css/print.css

57 lines
951 B
CSS
Raw Normal View History

2015-09-19 04:13:55 +08:00
@media only print {
#sidebar,
#menu-bar,
2015-09-19 04:13:55 +08:00
.nav-chapters,
.mobile-nav-chapters {
2018-07-26 03:46:17 +08:00
display: none;
2015-09-19 04:13:55 +08:00
}
#page-wrapper.page-wrapper {
transform: none;
margin-left: 0px;
overflow-y: initial;
}
#content {
max-width: none;
margin: 0;
padding: 0;
}
.page {
overflow-y: initial;
2015-09-19 04:13:55 +08:00
}
code {
2018-07-26 03:46:17 +08:00
background-color: #666666;
border-radius: 5px;
2015-09-19 04:13:55 +08:00
/* Force background to be printed in Chrome */
2018-07-26 03:46:17 +08:00
-webkit-print-color-adjust: exact;
2015-09-19 04:13:55 +08:00
}
2017-06-29 12:35:20 +08:00
pre > .buttons {
z-index: 2;
}
2015-09-19 04:13:55 +08:00
a, a:visited, a:active, a:hover {
2018-07-26 03:46:17 +08:00
color: #4183c4;
text-decoration: none;
2015-09-19 04:13:55 +08:00
}
h1, h2, h3, h4, h5, h6 {
2018-07-26 03:46:17 +08:00
page-break-inside: avoid;
page-break-after: avoid;
2015-09-19 04:13:55 +08:00
}
pre, code {
2018-07-26 03:46:17 +08:00
page-break-inside: avoid;
white-space: pre-wrap;
}
.fa {
2018-07-26 03:46:17 +08:00
display: none !important;
2015-09-19 04:13:55 +08:00
}
}