forked from stravo1/xavotsav-2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
globalStyles.css
64 lines (55 loc) · 1.09 KB
/
globalStyles.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
@import url("https://fonts.googleapis.com/css2?family=Italiana&family=Karla:wght@300;400;500;600&family=Yeseva+One&display=swap");
body {
height: 100dvh;
width: 100dvw;
margin: 0px;
background-color: black;
color: whitesmoke;
font-family: "Karla", monospace;
--primary-color: #ae3444;
--primary-color-text: #ff5f74;
--primary-color-text-dark: #611a23;
--accent-color: rgb(255, 151, 165);
}
.material-symbols-outlined {
font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
user-select: none;
}
.mobile,
.desktop {
width: 100dvw;
height: 100dvh;
}
.italiana {
line-height: 1.5;
font-family: "Italiana", sans-serif;
font-weight: 500;
}
.display {
line-height: 1.5;
font-family: "Yeseva One", sans-serif;
}
.black-bg {
background-color: black;
color: white;
}
.white-bg {
background-color: white;
color: black;
}
@media only screen and (max-width: 850px) {
.mobile {
display: block;
}
.desktop {
display: none;
}
}
@media only screen and (min-width: 850px) {
.mobile {
display: none;
}
.desktop {
display: block;
}
}