forked from css-for-js/huckleberry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (49 loc) · 842 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
* {
box-sizing: border-box;
font-family: "Lato", sans-serif;
}
html,
body {
margin: 0;
padding: 0;
}
/* Add styles here! */
header {
margin-top: 96px;
margin-bottom: 64px;
}
header h1 {
margin-bottom: 48px;
}
header p {
margin-top: 24px;
}
.intro-chunk {
max-width: 500px;
margin: 0 auto;
padding: 0 24px;
}
main {
background-color: hsl(0deg, 0%, 60%);
padding: 64px 0;
border-top: 8px solid hsl(0deg, 0%, 40%);
}
.card {
max-width: 500px;
margin: 0 auto;
background-color: white;
padding: 24px;
padding-top: 8px;
border-bottom: 8px solid hsl(0deg, 0%, 40%);
}
.indented-heading {
width: fit-content;
padding: 16px 36px;
margin: 0;
margin-left: -36px;
background-color: hsl(45deg, 100%, 50%);
border-bottom: 8px solid hsl(45deg, 100%, 40%);
}
strong {
color: hsl(160deg, 100%, 30%);
}