forked from css-for-js/huckleberry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (63 loc) · 1.09 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
72
73
74
75
76
77
* {
box-sizing: border-box;
font-family: 'Lato', sans-serif;
}
html,
body {
margin: 0;
padding: 0;
}
/* Add styles here! */
html, body {
height: 100%;
background-color: hsl(0deg, 0%, 60%);
font-size: 1.125rem;
}
h1, h2, h3 {
margin: 0;
}
p {
line-height: 1.5;
}
.max-width-wrapper {
margin-left: auto;
margin-right: auto;
max-width: 900px;
padding: 0 32px;
}
header {
background-color: hsl(0deg, 0%, 100%);
border-bottom: 8px solid hsl(0deg, 0%, 40%);
padding: 128px 0 0;
}
.intro-chunk {
max-width: 600px;
margin: 0 0 64px;
}
.intro-chunk .title {
font-size: 2rem;
margin-bottom: 64px;
}
.intro-chunk p {
font-size: 1.5rem;
}
.intro-chunk strong {
color: hsl(160deg, 100%, 30%);
}
.card {
background-color: hsl(0deg, 0%, 100%);
border-bottom: 8px solid hsl(0deg, 0%, 40%);
margin: 96px -32px;
padding: 0 32px;
}
.indented-heading {
display: inline-block;
background-color: hsl(45deg, 100%, 50%);
border-bottom: 8px solid hsl(45deg, 100%, 40%);
padding: 24px 48px;
margin: 8px 0 0px -48px;
}
.card p {
font-size: 1.25rem;
margin: 32px 0;
}