-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (53 loc) · 888 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
51
52
53
54
55
* {
margin: 0;
padding: 0;
}
body {
width: 100vw;
height: 100vh;
overflow: hidden;
}
#canvas-parent {
width: 100vw;
height: 100vh;
touch-action: none;
}
#guide {
position: fixed;
top: 0;
right: 0;
width: 300px;
padding: 1rem 2rem;
font-family:'Courier New', Courier, monospace;
line-height: 1.2;
background-color: white;
color: black;
}
#guide p {
margin-top: 10px;
}
#stats-widget {
position: absolute;
top: 70px;
left: 10px;
background-color: rgb(255 255 255 / 83%);
padding: 10px;
width: 300px;
word-break: break-all;
visibility: hidden;
}
#button {
position: fixed;
bottom: 16px;
right: 16px;
padding: 12px;
border-radius: 50%;
margin-bottom: 0px;
background-color: #FFF;
opacity: .9;
z-index: 999;
box-shadow: 0 0 4px rgb(0 0 0 / 15%);
}
@media (max-width:480px) {
#guide, #stats-widget { display: none; }
}