-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprint.css
More file actions
38 lines (33 loc) · 726 Bytes
/
print.css
File metadata and controls
38 lines (33 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@media print {
.row {
display: block !important;
}
.markdown header h1 {
string-set: doctitle content()
}
header {
display: block;
font-size: 2em;
margin-top: 0.67em;
margin-bottom: 0.67em;
margin-left: 0;
margin-right: 0;
font-weight: bold;
}
/* Elements should be removed in PDF */
.navbar,
.pagination-nav,
div[class*="docItemContainer"] article footer,
aside[class*="docSidebarContainer"],
a[class*="skipToContent"],
div[class*="lastUpdated"],
div[class*="tocCollapsible"],
div[class*="tableOfContents"],
.footer {
display: none !important;
}
/* try to avoid page breaks */
body {
page-break-inside:avoid;
}
}