-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroot.css
51 lines (45 loc) · 1.24 KB
/
root.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
@font-face {
font-family: 'Poppins';
src: url('fonts/Poppins-Regular.woff2') format('woff2'),
url('fonts/Poppins-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Poppins';
src: url('fonts/Poppins-SemiBold.woff2') format('woff2'),
url('fonts/Poppins-SemiBold.woff') format('woff');
font-weight: 600;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Poppins';
src: url('fonts/Poppins-ExtraLight.woff2') format('woff2'),
url('fonts/Poppins-ExtraLight.woff') format('woff');
font-weight: 200;
font-style: normal;
font-display: swap;
}
:root {
/* Primary Colors */
--color-red: hsl(0, 78%, 62%);
--color-cyan: hsl(180, 62%, 55%);
--color-orange: hsl(34, 97%, 64%);
--color-blue: hsl(212, 86%, 64%);
/* Neutral Colors */
--color-very-dark-blue: hsl(234, 12%, 34%);
--color-grayish-blue: hsl(229, 6%, 66%);
--color-very-light-gray: hsl(0, 0%, 98%);
/* Typography */
--font-family: 'Poppins', sans-serif;
--font-weight-light: 200;
--font-weight-regular: 400;
--font-weight-bold: 600;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}