-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (70 loc) · 1.46 KB
/
style.css
File metadata and controls
77 lines (70 loc) · 1.46 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100%;
overflow: hidden;
background: #060610;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
user-select: none;
-webkit-user-select: none;
}
#canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#status {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
color: rgba(255, 255, 255, 0.15);
font-size: 12px;
letter-spacing: 2px;
text-transform: uppercase;
transition: opacity 0.5s;
pointer-events: none;
}
#status.connected {
color: rgba(255, 255, 255, 0.08);
}
#connection-dot {
display: inline-block;
width: 6px;
height: 6px;
border-radius: 50%;
background: #ff4444;
margin-right: 8px;
vertical-align: middle;
transition: background 0.3s;
}
#connection-dot.connected {
background: #44aa44;
}
#hint {
position: fixed;
top: 16px;
left: 50%;
transform: translateX(-50%);
color: rgba(200, 190, 170, 0.7);
font: 11px "SF Mono", Menlo, Consolas, monospace;
letter-spacing: 0.5px;
pointer-events: none;
transition: opacity 1.5s ease;
z-index: 100;
}
#hint kbd {
display: inline-block;
padding: 1px 5px;
border: 1px solid rgba(200, 190, 170, 0.25);
border-radius: 3px;
font-family: inherit;
font-size: inherit;
}
#hint.fade { opacity: 0; }