blob: 87d019c58c797ac1ecbfa7b868c3ec270aa41aad (
plain)
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
|
.header,
.aside,
.nav_menu,
.day,
.flux_header,
.flux_content .bottom,
.pagination {
display: none;
}
html, body {
background: #fff;
color: #000;
font-family: Serif;
font-size: 12pt;
}
#global,
.flux_content {
display: block !important;
}
.flux_content .content {
width: 100% !important;
text-align: justify;
}
.flux_content .content a {
color: #000;
}
.flux_content .content a:after {
content: " (" attr(href) ") ";
text-decoration: underline;
}
|