-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.css
More file actions
52 lines (42 loc) · 742 Bytes
/
default.css
File metadata and controls
52 lines (42 loc) · 742 Bytes
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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;500;700&display=swap");
:root {
--page-padding: 200px;
}
*,
*::before,
*::after {
box-sizing: border-box;
padding: 0px;
margin: 0px;
font-family: inherit;
}
a {
text-decoration: none;
color: inherit;
cursor: pointer;
}
button {
box-sizing: content-box;
cursor: pointer;
border: none;
}
section {
width: 100%;
padding: 0 var(--page-padding);
}
section h1 {
color: rgb(59, 59, 59);
}
section > h1 {
font-size: 3rem;
margin-bottom: 10px;
}
section:not(:first-of-type) {
margin: 130px 0;
}
body {
font-family: "Poppins", sans-serif;
}
a.terms-and-conditions:hover {
cursor: pointer;
}