-
-
Notifications
You must be signed in to change notification settings - Fork 443
/
Copy pathprint.scss
62 lines (62 loc) · 1.17 KB
/
print.scss
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
@media print {
html, body {
background-color: white;
}
body {
margin-top: 10mm;
margin-bottom: 0mm;
margin-left: 0mm;
margin-right: 0mm;
}
body > header,
body > footer,
main .home .lander,
main .home .extras,
main .home .support-footer,
article > .extras,
article > .lander-info,
article > .post-footer,
article > .post-sponsor,
article > .post-closing,
article header .post-info,
article a.button.contact,
article header .post-context
{
display: none;
}
main div.home .table-of-contents {
background: none;
border: none;
box-shadow: none;
}
article > .post-links {
margin-bottom: $spacing-unit;
}
article > .post-checkpoint {
margin-bottom: $spacing-unit;
}
main.page-content {
padding: 0 !important;
}
main.page-content .post-container {
display: block;
}
main.page-content .post-container > .sidebar {
display: none;
}
pre {
white-space: pre-wrap !important;
}
main div.home .toc {
padding-top: 0;
}
a {
color: $text-color !important;
}
a[href]:after {
content: " (" attr(href) ")";
}
main div.home ul li a[href]:after {
content: none;
}
}