-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
94 lines (78 loc) · 1.37 KB
/
styles.css
File metadata and controls
94 lines (78 loc) · 1.37 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
* {
margin: 0;
font-family: 'Lato', sans-serif;
}
#video {
position: relative;
z-index: -1000;
}
#webgl {
position: fixed;
left: 0;
top: 0;
cursor: grab;
width: 100%;
}
#blocker {
display: none;
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.5);
z-index: 101;
}
#instructions {
width: 100%;
height: 100%;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
row-gap: 25px;
text-align: center;
font-size: 15px;
cursor: pointer;
}
#instructions p {
letter-spacing: 2px;
line-height: 1.5;
}
.joystick-area {
opacity: 1;
position: absolute;
left: 40px;
bottom: 25px;
width: 120px;
height:120px;
cursor: pointer;
border-radius: 50%;
z-index: 105;
}
#value {
position: absolute;
z-index: 1000;
}
.preloader-wrapper {
position: fixed;
width: 100vw;
height: 100vh;
background: rgb(14, 14, 14);
z-index: 10000;
transition: all 0.3s linear;
overflow: hidden;
}
#percentage {
color: white;
font-size: 50px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
}
@media screen and (min-width: 1300px) {
.joystick-area {
display: none;
}
};