blob: 809093002b3ec0e0df9eb1372bf8cda7431d1ec8 (
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
|
* {
font-family: monospace;
}
body {
background-color: #252422;
margin: 0;
padding: 0;
}
body section {
height: 100%;
max-width: 75rem;
margin-inline: auto;
padding: 1rem;
background-color: #252422;
color: #F3E9DC;
font-size: 125%;
}
// text sizing
h1, h2, h3, h4 {
margin-bottom: 0.3rem;
}
ul {
margin-top: 0;
}
p {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
a {
color: #8B95C9;
}
h1 a {
text-decoration: none;
}
pre {
padding : 0.5rem;
border-radius: 0.3rem;
overflow: auto;
tab-size: 4;
}
.header-title {
margin-bottom: 0;
font-size: 2.5rem;
}
.subtitle {
margin: 0.5rem auto;
}
.header-container {
display: flex;
justify-content: space-between;
}
.footer-text {
text-align: center;
}
blockquote {
background: #171615;
border-left: 0.7rem solid #F3E9DC;
border-radius: 0.5rem;
margin: 1.5em 10px;
padding: 0.5em 10px;
}
blockquote p {
margin-top: 0.2rem;
margin-bottom: 0.2rem;
}
|