-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobals.css
126 lines (104 loc) · 1.55 KB
/
globals.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
font-family: var(--font-family);
}
html {
font-size: 62.5%;
}
body {
font-size: 1.6rem;
margin-top: 15rem;
}
ul {
list-style: none;
}
a {
text-decoration: none;
color: inherit;
}
h1 {
font-size: 6.4rem;
font-weight: 700;
color: var(--primary-color);
}
.secondary-title {
font-size: 4rem;
font-weight: 700;
color: var(--primary-color);
}
.tertiary-title {
font-size: 3.2rem;
font-weight: 500;
line-height: 4.5rem;
color: var(--secondary-color);
}
p,
.p {
font-weight: 400;
font-size: 1.6rem;
line-height: 3.5rem;
}
p:not(:last-of-type),
.p:not(:last-of-type) {
margin-bottom: 2rem;
}
.btn {
background-color: none;
border: none;
outline: none;
padding: 1rem 4rem;
display: inline-block;
border-radius: 0.5rem;
}
.btn.btn-primary {
background-color: var(--dark-secondary-color);
color: var(--white);
font-weight: 400;
font-size: 1.4rem;
}
.max-width {
width: 100%;
max-width: 120rem;
padding: 0 4rem;
margin: 0 auto;
margin-bottom: 26rem;
}
.mb-0 {
margin-bottom: 0;
}
.mb-s {
margin-bottom: 1rem;
}
.mb-m {
margin-bottom: 2rem;
}
.mb-l {
margin-bottom: 4rem;
}
.mb-xl {
margin-bottom: 6rem;
}
@media only screen and (max-width: 1024px) {
html {
font-size: 60%;
}
h1 {
font-size: 6rem;
}
}
@media only screen and (max-width: 768px) {
html {
font-size: 58%;
}
.max-width {
padding: 0 2rem;
}
}
@media only screen and (max-width: 425px) {
h1 {
font-size: 4.2rem;
}
}