-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (70 loc) · 1.26 KB
/
style.css
File metadata and controls
85 lines (70 loc) · 1.26 KB
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
:root {
--text: #111;
--muted: #666;
--bg: #fafafa;
--link: #000;
--max-width: 42rem;
}
html {
background: var(--bg);
color: var(--text);
font-family: Georgia, "Times New Roman", serif;
line-height: 1.6;
}
body {
margin: 0;
padding: 3rem 1.25rem;
display: flex;
justify-content: center;
}
main {
max-width: var(--max-width);
width: 100%;
}
h1, h2 {
font-weight: normal;
margin-top: 2.5rem;
}
h1 {
font-size: 2rem;
margin-top: 0;
}
h2 {
font-size: 1.25rem;
color: var(--muted);
}
p {
margin: 1rem 0;
}
ul {
list-style: none;
padding-left: 0;
margin: 1rem 0;
}
li {
margin: 0.5rem 0;
}
a {
color: var(--link);
text-decoration: underline;
text-underline-offset: 0.15em;
}
a:hover {
text-decoration-thickness: 2px;
}
header {
margin-bottom: 3rem;
}
nav a {
margin-right: 1rem;
white-space: nowrap;
}
footer {
margin-top: 4rem;
font-size: 0.9rem;
color: var(--muted);
}
.section-intro {
color: var(--muted);
font-size: 0.95rem;
}