blob: 9210e3a4dd7bfef05e673c8a87787f51f2b3af48 (
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
35
36
37
38
39
40
41
42
43
44
45
|
.post {
padding: 4em;
border: 1px #ddd;
border-style: none solid;
h1.title {
margin: 0;
display: flex;
line-height: 1.2em;
justify-content: unset;
}
blockquote {
border-top: 2px solid #616161;
border-left: unset;
padding-left: unset;
padding-top: 20px;
margin: unset;
}
}
.posts .post-title {
justify-content: unset;
}
.page-nav {
display: flex;
justify-content: unset;
border-style: solid none none none;
border: 1px #ddd;
margin: 4em 0;
.more {
margin-top: unset;
margin-right: 1em;
text-decoration: none;
color: gray;
}
}
.license {
display: flex;
justify-content: unset;
border-style: solid none none none;
border: 1px #ddd;
margin: 4em 0 4em 1em;
}
|