-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (48 loc) · 782 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
* {
box-sizing: border-box;
font-family: "Lato", sans-serif;
}
html,
body {
margin: 0;
padding: 0;
background-color: hsl(0 0% 40%);
}
/* Add styles here! */
.max-width-wrapper {
max-width: 640px;
margin-left: auto;
margin-right: auto;
}
header {
background-color: #fff;
padding: 64px 16px 32px;
}
h1 {
margin-top: 0;
margin-bottom: 36px;
}
.intro-chunk {
max-width: 320px;
}
strong {
color: hsl(160 100% 30%);
}
main {
border-top: 8px solid hsl(0 0% 60%)
}
.card {
margin-top: 64px;
background-color: #fff;
padding: 8px 24px;
}
h2 {
margin-top: 0;
}
.indented-heading {
background-color: hsl(45 100% 50%);
margin-left: -32px;
padding: 8px 24px 8px 32px;
width: fit-content;
border-bottom: 8px solid hsl(45 100% 40%);
}