-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathglobals.css
42 lines (36 loc) · 925 Bytes
/
globals.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
@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@400;700&display=swap');
* {
margin : 0;
padding : 0;
box-sizing: border-box;
}
html {
height : 100%;
overflow: hidden;
position: relative;
}
body {
overscroll-behavior : contain;
margin : 0;
-webkit-font-smoothing : antialiased;
-moz-osx-font-smoothing: grayscale;
}
.default_background {
background-image : url("/background.webp");
background-attachment: fixed;
background-position : center;
background-repeat : no-repeat;
background-size : cover;
display : block;
overflow-y : auto;
overflow-x : hidden;
position : absolute;
top : 0;
bottom : 0;
left : 0;
right : 0;
z-index : -1;
}
.default_background_color {
background-color: #42403f;
}