-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (63 loc) · 1020 Bytes
/
style.css
File metadata and controls
72 lines (63 loc) · 1020 Bytes
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
:root {
color-scheme: dark;
--hud-bg: rgba(0, 0, 0, 0.35);
--hud-border: rgba(255, 255, 255, 0.18);
}
html,
body {
height: 100%;
margin: 0;
}
body {
font-family:
ui-sans-serif,
system-ui,
-apple-system,
Segoe UI,
Roboto,
Arial,
"Apple Color Emoji",
"Segoe UI Emoji";
overflow: hidden;
}
#app {
position: relative;
width: 100%;
height: 100%;
}
#c {
display: block;
width: 100%;
height: 100%;
}
#hud {
position: absolute;
top: 12px;
left: 12px;
padding: 10px 12px;
border-radius: 10px;
background: var(--hud-bg);
border: 1px solid var(--hud-border);
backdrop-filter: blur(6px);
color: rgba(255, 255, 255, 0.9);
user-select: none;
}
#hud .title {
font-weight: 700;
letter-spacing: 0.2px;
}
#hud .hint {
margin-top: 4px;
font-size: 12px;
opacity: 0.85;
}
#hud .link {
display: inline-block;
margin-top: 8px;
font-size: 12px;
color: #8cc8ff;
text-decoration: none;
}
#hud .link:hover {
text-decoration: underline;
}