-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
43 lines (40 loc) · 690 Bytes
/
Copy pathstyles.css
File metadata and controls
43 lines (40 loc) · 690 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
:root {
--responsive-width: 920px;
}
@media (max-width: 2299px) and (min-width: 1350px) {
:root {
--responsive-width: 40vw;
}
}
@media (max-width: 1349px) and (min-width: 600px) {
:root {
--responsive-width: 540px;
}
}
@media (max-width: 599px) {
:root {
--responsive-width: 90vw;
}
}
body {
font-family: "Montserrat", "Arial", sans-serif;
max-width: var(--responsive-width);
margin: auto;
color: #2A132F
}
h1 {
font-family: "Roboto Slab", serif;
font-size: 36px;
font-weight: bold;
}
h2 {
font-size: 20px;
font-weight: bold;
}
a {
color: #a96de8;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}