blob: 2b52dff71bd9f097e12ee455959957a91c69f547 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#title {
margin: 0 0 3rem 0;
}
#title > h1 {
margin-bottom: 0.4rem;
}
figure {
text-align: center;
font-style: italic;
font-size: 0.8rem;
}
figure img {
max-width: 100%;
border-radius: 10px;
}
.blog-post, .blog-post-header {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.blog-post-title {
flex-grow: 1;
}
.blog-post {
padding: 0.2rem 0;
}
.blog-post-header {
padding: 0.5rem 0;
color: var(--color-text-muted);
}
.blog-post-header, .blog-post:last-of-type {
border-bottom: 1px dotted var(--color-text-muted);
}
#content {
position: relative;
}
#back-header {
position: relative;
font-size: 1rem;
top: -2rem;
font-family: var(--font-monospace);
width: 700px;
}
#back-container {
position: absolute;
height: 0;
width: 0;
}
#back-footer {
margin-top: 4rem;
}
|