-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (41 loc) · 732 Bytes
/
style.css
File metadata and controls
49 lines (41 loc) · 732 Bytes
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
* {
margin: 0;
padding: 0;
}
body {
background: #33393b;
color: #eeeeec;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";;
line-height: 1.5rem;
max-width: 40rem;
margin: 0 auto;
padding: 1.5rem;
}
a:link {
color: #0dadff;
}
a:visited {
color: #215d9c;
}
h1 {
color: white;
font-size: 1.5rem;
font-weight: bold;
margin-bottom: 2rem;
}
h2 {
color: white;
font-size: 1.25rem;
font-weight: bold;
margin: 1.5rem 0 .75rem;
}
ul, p {
margin: .75rem 0;
}
ul {
list-style: disc outside;
padding-left: 1.75rem;
}
li {
margin-bottom: .75rem;
}