blob: 989086ce7f8dd46f13e9e66efe08fc06b5d97002 (
plain) (
blame)
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
|
.p-summary {
display: none;
}
.logo {
height: 64px;
}
.print-footer {
display: none;
}
figcaption {
text-align: center;
}
@media print {
.sidebar {
display: none;
}
article {
border: 0
}
article footer {
display: none;
}
.container>header {
display: none;
}
.container>footer {
display: none;
}
.comments {
display: none;
}
.h-entry {
width: 100% !important;
}
.container {
width: 100% !important;
}
.print-footer {
display: block !important;
}
}
|