forked from css-for-js/huckleberry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (52 loc) · 883 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
* {
box-sizing: border-box;
font-family: "Lato", sans-serif;
}
html,
body {
margin: 0;
padding: 0;
}
/* Add styles here! */
html,
body {
line-height: 1.5;
}
.max-width-wrapper {
margin-left: auto;
margin-right: auto;
padding-top: 100px;
max-width: 600px;
}
.intro-chunk {
max-width: 300px;
padding: 32px 20px;
}
main {
background-color: hsl(0deg, 0%, 60%);
padding-bottom: 80px;
line-height: 1.3;
}
.title {
font-weight: 900;
}
header strong {
color: hsl(160deg, 100%, 30%);
}
header {
border-bottom: 8px solid grey;
}
.card {
background-color: white;
padding: 16px 24px;
border-bottom: 8px solid grey;
}
.indented-heading {
background-color: hsl(45deg, 100%, 50%);
padding: 16px 24px;
margin-left: -40px;
padding-left: 40px;
margin-top: -8px;
max-width: max-content;
border-bottom: 8px solid hsl(45deg, 100%, 40%);
}