-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.css
66 lines (58 loc) · 779 Bytes
/
global.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
:root {
--primary: #ffffff;
--secondary: #ff4a11;
--secondary-light: #fddcd2;
--white: #ffffff;
--black: #252629;
--ff-primary: sans-serif;
--ff-serif: serif;
--fs-200: 0.6rem;
--fs-300: 0.8rem;
--fs-400: 1rem;
--fs-500: 1.1rem;
--fs-600: 1.5rem;
--fs-900: 1.75rem;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
h1,
h2,
h3 {
line-height: 1.2;
}
body,
h1,
h2,
h3,
p {
margin: 0;
}
body {
line-height: 1.5;
font-family: var(--ff-primary);
color: var(--black);
}
button {
font-size: var(--fs-400);
font-family: var(--ff-primary);
color: var(--black);
}
ul,
ol {
list-style: none;
padding: 0;
margin: 0;
}
ul li,
ol li {
list-style: none;
padding: 0;
}
img {
max-width: 100%;
height: auto;
display: block;
}