-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (63 loc) · 1.19 KB
/
Copy pathstyle.css
File metadata and controls
70 lines (63 loc) · 1.19 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #000;
overflow: hidden;
font-family: monospace;
color: #fff;
}
#canvas {
display: block;
width: 100vw;
height: 100vh;
}
#ui {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 16px;
align-items: center;
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(8px);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 12px;
padding: 10px 20px;
z-index: 10;
}
#ui button {
background: rgba(255, 255, 255, 0.15);
border: 1px solid rgba(255, 255, 255, 0.3);
color: #fff;
padding: 6px 14px;
border-radius: 6px;
cursor: pointer;
font-family: monospace;
font-size: 13px;
transition: background 0.2s;
}
#ui button:hover {
background: rgba(255, 255, 255, 0.25);
}
#ui label {
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
color: rgba(255, 255, 255, 0.7);
}
#ui select,
#ui input[type="range"] {
accent-color: #a78bfa;
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.2);
color: #fff;
border-radius: 4px;
padding: 2px 4px;
font-family: monospace;
font-size: 13px;
}