-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (61 loc) · 1.01 KB
/
Copy pathstyle.css
File metadata and controls
72 lines (61 loc) · 1.01 KB
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
65
66
67
68
69
70
71
72
html, body {
margin: 0;
padding: 0;
}
#game-root {
position: relative;
width: fit-content;
overflow: hidden;
}
canvas {
display: block;
}
.fuzzy-overlay {
position: absolute;
inset: -200%;
background-image: url("noise.png");
opacity: 15%;
z-index: 10;
pointer-events: none;
animation: shift 0.2s linear infinite both;
}
@keyframes shift {
0% {
transform: translateX(10%) translateY(10%);
}
100% {
transform: translateX(-10%) translateY(-10%);
}
}
#loading-screen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #000;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 100;
color: white;
font-family: monospace;
}
#loading-text {
font-size: 2em;
margin-bottom: 20px;
}
#progress-bar-container {
width: 80%;
height: 30px;
border: 2px solid white;
}
#progress-bar {
width: 0%;
height: 100%;
background-color: white;
}
.hidden {
display: none;
}