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
|
@font-face {
font-family: "Bitter";
src: local("Bitter"), url("./fonts/Bitter-Regular.woff") format("truetype");
}
html {
font-family: "Open Sans", sans-serif;
color: #ebdbb2;
background-color: #282828;
}
body {
margin: 0 auto;
max-width: 1100px;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
word-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
font-size: 16px;
}
p {
margin: 1em 0;
}
a {
color: #fabd2f;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Bitter", serif;
font-weight: normal;
line-height: 1.1;
margin-top: 1.4em;
}
h2 {
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
code {
font-family: monospace;
font-size: 90%;
margin: 0;
padding: 2px;
background: #1d2021;
border-radius: 4px;
border: 1px solid rgba(255, 255, 255, 0.12);
}
table {
width: 100%;
border-collapse: collapse;
}
table tr:nth-child(2n) {
background: #1d2021;
}
|