blob: 23daaddc7f0d541a0f4a5a1717d7597a8237ccd5 (
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
46
47
|
.space-between {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.p-summary {
display: none;
}
.logo {
height: 64px;
}
.print-footer {
display: none;
}
@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;
}
}
|