-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshared.css
82 lines (68 loc) · 1.03 KB
/
shared.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
78
79
80
81
body {
font-family: 'Saira Condensed', sans-serif;
line-height: 1.5;
display: flex;
justify-content: center;
padding: 1em;
color: #222;
height: 100vh;
overflow: scroll;
box-sizing: border-box;
}
header {
display: flex;
align-items: center;
justify-content: center;
font-size: 6em;
margin-bottom: 30px;
}
header a {
display: flex;
}
a {
font-weight: 300;
color: #96503e;
}
a:hover {
font-weight: normal;
}
h2 {
font-weight: 600;
font-size: 2em;
}
h3 {
font-weight: 600;
font-size: 1.5em;
}
h4 {
font-weight: 600;
font-size: 1em;
}
.layout {
max-width: 1000px;
width: 100%;
}
main {
min-height: calc(100vh - 164px - 80px - 2em);
}
footer {
min-height: 40px;
border: 8px solid #f48466;
margin-top: 20px;
box-sizing: border-box;
padding: 8px;
border-radius: 4px;
margin-bottom: 1em;
}
.footer--links {
display: flex;
flex-flow: wrap;
justify-content: space-around;
width: 100%;
}
.footer--link {
white-space: nowrap;
}
.footer--link:hover {
font-weight: 300;
}