-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (61 loc) · 1.04 KB
/
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
67
68
69
70
71
* {
box-sizing: border-box;
font-family: "Lato", sans-serif;
}
html,
body {
margin: 0;
padding: 0;
height: 100%;
}
/* Add styles here! */
.title {
margin-top: 38px;
margin-bottom: 48px;
font-size: 2rem;
}
.intro-chunk {
max-width: 415px;
font-size: 1.25rem;
padding-left: 24px;
}
.intro-chunk strong {
color: hsl(160deg, 100%, 30%);
}
main {
margin-top: 64px;
border-top: 8px solid #999;
background-color: #666;
padding-bottom: 66px;
}
.max-width-wrapper {
max-width: 800px;
margin: auto;
}
.card {
background-color: #fff;
margin-top: 72px;
padding-top: 8px;
padding-left: 28px;
padding-right: 28px;
padding-bottom: 8px;
border-bottom: 8px solid #999;
font-size: 1.25rem;
}
.card p {
margin-top: 16px;
margin-bottom: 16px;
}
.indented-heading {
font-size: 1.5rem;
background-color: #ffbf00;
display: inline-block;
width: max-content;
padding: 12px;
padding-left: 32px;
padding-right: 32px;
margin-left: -36px;
border-bottom: 8px solid #cc9900;
margin-bottom: 0;
margin-top: 0;
}