-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
93 lines (79 loc) · 1.28 KB
/
index.css
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
body {
background-color: #0d1117;
color: #c9d1d9;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
line-height: 1.5;
margin: 0;
padding: 20px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
b {
font-weight: 900;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #58a6ff;
margin-top: 24px;
margin-bottom: 16px;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.5em;
}
h3 {
font-size: 1.17em;
}
h4,
h5,
h6 {
font-size: 1em;
}
a {
color: #58a6ff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul,
ol {
padding-left: 20px;
}
code {
background-color: #242424;
border-radius: 6px;
color: #d2a8ff;
padding: 0.2em 0.4em;
font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
}
pre code {
padding: 0;
}
pre {
background-color: #242424;
border-radius: 6px;
padding: 0.2em 0.4em;
}
blockquote {
background-color: #242424;
border-left: 4px solid #30363d;
padding-left: 2em;
margin-left: 0;
padding-top: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
color: #8b949e;
}
img {
max-width: 100%;
height: auto;
border-radius: 6px;
}