blob: 0afdfc6232094e2b3268d08350421f84dd7f8eda (
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
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
|
// Main styles and centering
body {
margin: 3rem auto;
max-width: 55rem;
line-height: 1.3;
font-size: 1.2rem;
padding: 0 2rem;
background-color: #252422;
color: #DCE1DE;
font-family: arial;
}
// more compact margins
h1, h2, h3, h4 {
margin-bottom: 0.3rem;
}
ul {
margin-top: 0.3rem;
}
a {
color: #8B95C9;
}
h1 a {
text-decoration: none;
}
// Blog titles
.header-title {
margin: 0;
font-size: 2.5rem;
}
.subtitle {
margin: 0.5rem auto;
}
.blog-header {
display: flex;
justify-content: space-between;
}
.blog-header-left {
padding-right: 1rem;
flex: 1 1 auto;
max-width: 60%;
}
.blog-header-right {
flex: 0 0 auto;
white-space: nowrap;
text-align: right;
}
// Blog element styling
pre {
padding : 0.5rem;
border-radius: 0.3rem;
overflow: auto;
tab-size: 4;
font-family: monospace;
}
blockquote {
background: #171615;
border-left: 0.7rem solid #F3E9DC;
margin: 1.5em 10px;
padding: 0.5em 10px;
}
blockquote p {
margin-top: 0.2rem;
margin-bottom: 0.2rem;
}
p code {
background: #171615;
padding-left: 0.25rem;
padding-right: 0.25rem;
font-family: monospace;
}
img {
width: 40rem;
display: block;
margin: 0 auto;
}
.footer-text {
text-align: center;
}
.footer-text a {
text-decoration: none;
}
.index-section {
background-color: #2e2d2c;
padding: 0.5rem;
margin-top: 0.6rem;
}
.index-section h2 {
margin-top: 0.1rem;
}
|