-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
33 lines (28 loc) · 727 Bytes
/
main.css
File metadata and controls
33 lines (28 loc) · 727 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
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400;500;600;700;800;900&display=swap');
@font-face {
font-family: 'Horizon';
src: url(/assets/fonts/Horizon.woff2) format('woff2');
}
:root {
font-family: 'Horizon';
color: white;
}
* {
box-sizing: border-box;
}
a, a:focus, a:hover {
-webkit-touch-callout: none;
/* -webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; */
color: unset;
text-decoration: none;
}
html, body {
height: 100vh;
height: fill-available;
height: -moz-fill-available;
height: -webkit-fill-available;
}