forked from Trott/nodetodo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (51 loc) · 762 Bytes
/
style.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
:root {
--orange: #f0834c;
--charcoal: #1c1c1c;
}
body {
font-family: 'Open Sans', sans-serif;
line-height: 150%;
color: var(--charcoal);
}
a {
color: var(--orange);
}
h1 a {
color: inherit;
text-decoration: inherit;
}
h1, h2 {
font-family: 'Baloo Tamma', cursive;
line-height: 100%;
}
h1 {
font-size: 4em;
margin-bottom: 0;
}
h2 {
font-size: 2.3em;
}
section {
max-width: 700px;
padding: 2em 30px;
margin: 0 auto;
}
header {
background-color: var(--orange);
color: white;
padding-top: 2em;
}
main > section {
box-shadow: 0 1px 3px gray;
background-color: white;
margin-top: 2em;
}
main > section:first-child {
margin-top: -2em;
}
footer {
color: gray;
}
.instructions > li {
padding-bottom: 2rem;
}