-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathstyle.css
48 lines (43 loc) · 906 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
/* Variables */
:root {
--color-red: #F9364E;
--color-green: #3ABFA1;
--color-pink: #FFA0AC;
--color-grey: #999999;
--color-white: #FFFFFF;
--color-off-white: #F5F5F5;
--color-font-black: #333333;
--color-off-black: #222222;
}
/* Reset */
html, body, div, span, a, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
body {
line-height: 1;
}
/* Styles */
body {
color: var(--color-font-black);
font-size: 18px;
font-weight: 500;
font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Helvetica", sans-serif;
letter-spacing: -0.04rem;
-webkit-font-smoothing: antialiased;
-webkit-user-select: none;
cursor: default;
}
main {
display: flex;
height: 100vh;
background: var(--color-off-black);
flex-direction: column;
align-items: center;
justify-content: center;
box-sizing: border-box;
}