forked from css-for-js/huckleberry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (56 loc) · 934 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
64
65
66
* {
box-sizing: border-box;
font-family: 'Lato', sans-serif;
}
html,
body {
margin: 0;
padding: 0;
}
/* Add styles here! */
header {
padding-top: 96px;
padding-bottom: 64px;
}
.title {
font-style: normal;
font-weight: 800;
font-size: 32px;
line-height: 120%;
}
.max-width-wrapper {
max-width: 800px;
margin: 0 auto;
}
.intro-chunk {
padding: 0 24px;
}
.intro-chunk p {
max-width: 400px;
font-weight: 400;
font-size: 20px;
line-height: 150%;
}
.intro-chunk p strong {
font-weight: 800;
color: #009966;
}
main {
border-top: 8px solid #999999;
background: #666666;
padding-top: 64px;
padding-bottom: 58px;
}
.card {
padding: 92px 24px 24px 24px;
background: #FFFFFF;
border-bottom: 8px solid #999999;
}
.indented-heading {
padding: 16px 32px;
border-bottom: 8px solid #CC9900;
background: #FFBF00;
max-width: fit-content;
margin-left: -32px;
margin-top: -84px;
}