blob: 78a76c79c49ff5de6314ecabcc110874671bdc79 (
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
|
body {
background: #322;
color: #aaa;
line-height: 1.5;
a {
color: #acc;
}
h1, h2, h3 {
color: #bcc;
}
}
img {
max-width: 80%;
}
.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-title {
margin-top: 0;
}
.post-meta {
display: flex;
justify-content: space-between;
font-size: x-small;
.post-tags {
display: flex;
list-style: none;
* + * {
&::before {
content: ", "
}
}
}
}
|