-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
59 lines (53 loc) · 778 Bytes
/
main.css
File metadata and controls
59 lines (53 loc) · 778 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
48
49
50
51
52
53
54
55
56
57
58
59
html,
body {
height: 100%;
}
body {
display: flex;
flex-direction: column;
font-family: "Open Sans", sans-serif;
}
main {
display: flex;
flex-direction: row;
flex-wrap: wrap;
flex-grow: 1;
min-height: 600px;
background: #faf7e8;
color: #291f15;
}
main .icon {
width: 64px;
height: 64px;
}
main div {
margin: 1rem;
}
main h1 {
font-weight: 700;
font-size: 200%;
}
main h1 span {
color: #dc6851;
}
main p {
font-weight: 600;
}
footer {
background: #47403a;
color: rgba(255, 255, 255, 0.4);
}
footer p {
margin: 3rem;
}
svg {
fill: currentColor;
}
.flex-center {
align-items: center;
align-content: center;
justify-content: center;
}
.text-center {
text-align: center;
}