forked from SecretImbecile/pressandforget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprint.css
49 lines (42 loc) · 929 Bytes
/
print.css
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
@media only print {
body {
font-size: 10pt;
font-family: Georgia, serif;
margin: 2cm;
margin-bottom: 0;
background-color: #fff;
}
#page {
display: block;
}
main {
border: none;
padding: 0;
}
a {text-decoration: underline;}
h1,
h2,
h3,
header *{
color: black;
font-family: sans-serif;
text-decoration: none;
}
h2 a,
h3 a {
color: black;
text-decoration: none;
}
header {
padding: 0;
}
article {
margin: 1cm 0;
}
#navbar {
display: none;
}
footer {
display: none;
}
}