-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
68 lines (57 loc) · 1.06 KB
/
styles.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
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
:root {
--color-bg-dark: #0d1117;
--color-text-light: #fff;
--color-main-link: #88f;
}
* {
font-family: "Inter", sans-serif;
box-sizing: border-box;
margin: 0;
padding: 0;
}
a,
a:hover {
color: unset;
text-decoration: none;
}
html,
body {
background-color: var(--color-bg-dark);
color: var(--color-text-light);
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Montserrat", sans-serif;
}
.full-width-container {
padding-top: 40px;
padding-left: 10px;
padding-right: 10px;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
}
.main-link {
color: var(--color-main-link);
font-weight: 700;
font-size: 20px;
}
.mb20 {
margin-bottom: 20px;
}
/* RESPONSIVE
--------------------------------------------------------------------------- */
@media (min-width: 576px) {
.full-width-container {
padding-left: 20px;
padding-right: 20px;
}
}