blob: 94bb3fe83abc56ee023b338333e9f81eef69e5fb (
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
|
body {
background: #232227;
color: #aaa;
line-height: 1.5;
a {
color: #7e8ea6; //#566171;//#8f8f8f;
}
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;
color: #ccc;
padding-left: 5rem;
padding-right: 5rem;
font-size: 200%;
}
.site-description {
background-color: #000;
color: #ccc;
padding-left: 5rem;
padding-right: 5rem;
font-size: x-small;
}
}
.page-content {
margin-left: 5em;
margin-right: 5em;
}
.figure {
text-align: center;
padding-top: 1em;
padding-bottom: 0.5em;
}
.license {
display: flex;
border-top: 1px solid #aaa;
padding-top: 0.5em;
.cc-by-sa-logo {
width: 10em;
}
.license-text {
font-size: small;
}
}
.post-list {
h2 {
font-size: larger;
}
}
.post-title {
margin-bottom: 0;
}
.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;
}
|