forked from css-for-js/huckleberry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (40 loc) · 695 Bytes
/
style.css
File metadata and controls
47 lines (40 loc) · 695 Bytes
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
* {
box-sizing: border-box;
font-family: 'Lato', sans-serif;
}
html,
body {
margin: 0;
padding: 0;
}
/* Add styles here! */
body {
background-color: gray;
}
header {
margin-bottom: 80px;
border-bottom: 4px solid hsl(100deg 0% 30%);
background-color: white;
}
strong{
color: hsl(160deg 100% 30%);
}
.max-width-wrapper {
width: max-content;
margin: auto;
}
.intro-chunk {
}
.card {
background-color: white;
border-bottom: 4px solid hsl(100deg 0% 30%);
padding: 10px;
}
.indented-heading{
margin-left: -20;
display: inline-block;
overflow:auto;
background-color: hsl(45deg 100% 50%);
padding: 20px;
border-bottom: 5px solid hsl(45deg 100% 35%);
}