blob: b6622544bcf7e6b49c9fe06d180534a6529d5bf9 (
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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
body {
background: #232227;
color: #aaa;
line-height: 1.5;
a {
color: #7e8ea6; //#566171;//#8f8f8f;
text-decoration: none;
}
h1, h2, h3 {
color: #566171; //#3e4753;// #828282;
}
}
img {
max-width: 80%;
}
pre {
padding: 0.3em;
}
.site-header {
font-family: sans-serif;
.site-title {
background-color: #3e4753;
font-size: 200%;
font-weight: bold;
a {
text-decoration: none;
}
img {
vertical-align: bottom;
}
}
.site-bar {
display: flex;
justify-content: space-between;
background-color: #000;
color: #ccc;
font-size: x-small;
}
}
.page-content,
.site-title,
.site-bar {
@media(min-width: 960px) {
padding-left: 5rem;
padding-right: 5rem;
}
}
.figure {
text-align: center;
padding-top: 1em;
padding-bottom: 0.5em;
}
.prefer-left {
@media(min-width: 960px) {
float: left;
width: 400px;
margin: 0.5rem;
}
}
.license {
display: flex;
border-top: 1px solid #aaa;
padding-top: 0.5em;
.cc-by-sa-logo {
width: 8rem;
}
.license-text {
font-size: x-small;
p {
margin-top: 0;
}
}
}
.post-list {
h2 {
font-size: larger;
}
}
.post {
clear: both;
margin-top: 2em;
}
.post-title {
margin-bottom: 0;
font-size: 150%;
}
.post-meta {
font-size: x-small;
.meta-tags {
display: flex;
* + * {
&::before {
content: ", "
}
}
}
}
.footnote-reference {
font-size: x-small;
}
.footnote-definition {
display: flex;
font-size: small;
border-top: 1px solid gray;
}
|