-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.css
62 lines (51 loc) · 1.14 KB
/
common.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
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');
/* reset CSS */
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* general CSS */
/* Typography */
:root{
--fs1:3rem;
--fs2:2rem;
--fs3:1.5rem;
--fs4:1rem;
--fs5:0.5rem;
/* font-weight */
--fw-light:300;
--fw-regular:400;
--fw-semi:600;
--fw-bold:700;
--fw-black:900;
/* spacing */
--spacing1:0.125rem;
--spacing2:0.25rem;
--spacing3:0.375rem;
--spacing4:0.5rem;
--spacing5:0.625rem;
--spacing6:0.75rem;
--spacing7:1rem;
--spacing8:1.25rem;
--spacing9:1.5rem;
--spacing10:1.75rem;
--spacing11:2rem;
--spacing12:2.25rem;
--spacing13:2.5rem;
--spacing14:2.75rem;
/* border radius */
--br-small:5px;
--br-medium:10px;
--br-large:15px;
--br-full:999px;
/* colors */
--bg-color: #fff;
--primary-color: #0D1B2A;
--secondary-color:#747578;
--primary-hover-color:#404E5D;
--secondary-hover-color:#A7A8AB;
--white:#fff;
/* font family*/
font-family: 'Outfit', sans-serif;
}