Newer
Older
// sass-lint:disable no-color-hex, no-color-literals, no-important, no-vendor-prefixes
* {
background: transparent !important;
color: #000 !important; // Black prints faster: h5bp.com/s
box-shadow: none !important;
text-shadow: none !important;
filter: none !important;
-ms-filter: none !important;
font-family: 'Garamond Premier Pro', serif !important;
font-style: normal !important;
letter-spacing: normal !important;
text-align: left !important;
}
html {
font-size: 100% !important;
}
@page {
margin: 1cm !important;
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
}
body {
font-size: 14px !important;
line-height: 1.3 !important;
margin: 1cm !important;
}
// Underline all links.
:link,
:visited {
text-decoration: none !important;
border: 0 !important;
color: #000 !important;
}
// Add visible URL after links.
a[href^='http:']::after,
a[href^='https:']::after {
content: ' (' attr(href) ')';
}
abbr[title] {
// Add visible title after abbreviations.
&::after {
content: ' (' attr(title) ')';
}
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
.header__logo {
fill: #000;
}
.header {
height: auto;
padding: 0;
&::after {
background: transparent !important;
}
}
.admin-bar {
position: static;
right: auto;
left: auto;
width: auto;
padding: 0;
margin-right: 0;
margin-left: 0;
}
nav,
aside,
footer,
.icon,
.card__icon,
.header__icon,
.header__menus,
.header__button-container,
.status-bar,
.tabs__container,
.js-actions-toggle,
.js-actions-sidebar,
.link--edit-submission,
.section--share,
.link--fixed-apply {
display: none !important;
}