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
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
|
@import "_fonts.scss";
@import "_mixins.scss";
body {
font-family: $fancy_serif;
background: white;
color: black;
max-width: 660px;
font-size: 11pt;
margin: 0 auto;
line-height: 1.6;
}
.header-wrapper, #breadcrumbs, #page-navigation, .post-subtitle, .comment--form--wrapper, footer {
display: none;
}
.post-source { display: none;}
.highlight {
background: #f7f5f5 !important;
}
code, pre {
background: #f7f5f5 !important;
font-family: Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace;
}
a {
}
pre {
background: #f7f5f5 !important;
padding: .5cm .25cm;
}
p code {
padding: 0 .25cm;
}
.cluster img, .picwide img, .picfull img {
width: 80%;
margin: 0 auto;
filter: grayscale(100%);
}
.row-2 img {
width: 50%;
margin: 0;
float:left;
filter: grayscale(100%);
}
.post-body p {
font-size: 11pt;
}
.post-body h3 {
font-size: 19pt;
}
.post-body h5 {
font-size: 14pt;
}
.go:before {
content: "$ ";
}
@page {
@bottom-right{
@include fancy_sans;
@include smcaps;
content: "Page " counter(page) " of " counter(pages);
font-size: 6pt;
color: #666;
width: 2cm;
}
}
main .post--body {
max-width: 660px;
margin: 0;
}
figure {
width: 100%;
margin: 0;
}
figcaption {
@include fancy_sans;
color: #999;
font-size: 9pt;
margin-top: 0;
}
.post-location {
@include fancy_sans;
color: #333;
font-size: 12pt;
a {
text-decoration: none;
display: none;
}
.region {
display: inline;
color: #333 !important;
}
}
.entry-footer, .article-afterward, .jslghtbx {
display: none;
}
|