-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (49 loc) · 883 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
53
54
55
56
57
58
:root {
--checkin-colors-primary: #8332AC;
--checkin-colors-secondary: #F2D1C9;
--checkin-colors-dark: #462749;
--checkin-colors-bright: #E086D3;
--checkin-colors-alternative: #BAD1CD;
--checkin-colors-white: #FFFFFF;
}
html {
height: 100%;
font-size: 16px;
font-family: sans-serif;
}
body {
display: flex;
flex-direction: column;
margin: 0;
min-height: 100%;
background-color: var(--checkin-colors-white);
}
body > * {
padding: 0 10%;
}
@media (min-width: 80rem) {
body > * {
padding: 0 20%;
}
}
body > * > *:not(checkin-router) {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}
header, footer {
display: flex;
flex-direction: column;
justify-content: center;
background-color: var(--checkin-colors-secondary);
}
header {
height: 7rem;
}
main {
flex-grow: 1;
}
footer {
height: 5rem;
}