-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (41 loc) · 870 Bytes
/
style.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
* {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: white;
margin: 0px;
padding: 0px;
}
body {
width: 100vw;
height: 100vh;
background: rgb(54, 58, 46);
box-sizing: border-box;
overflow-x: hidden;
}
.canvasWrapper {
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
margin-left: auto;
margin-right: auto;
position: relative;
}
#canvas {
width: 100%;
height: 100%;
cursor: pointer;
/*border: 1px red solid;*/
display: block;
box-sizing: border-box;
}
#loading {
position: absolute;
width: 4em;
height: 4em;
z-index: 1000;
display: flex;
justify-content: center;
align-items: center;
background: red;
}