-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (38 loc) · 831 Bytes
/
Copy pathstyle.css
File metadata and controls
38 lines (38 loc) · 831 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
html, body {
margin: 0;
padding: 0;
overflow: hidden;
width: 100%;
height: 100vh;
}
body {
background: #000;
}
#shaderCanvas {
width: 100%;
height: 100vh;
display: block;
}
#controls {
position: fixed;
top: 12px;
left: 12px;
z-index: 10;
display: flex;
gap: 8px;
align-items: center;
padding: 8px 10px;
background: rgba(0, 0, 0, 0.55);
color: #e8e8e8;
font: 12px/1.2 "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 8px;
backdrop-filter: blur(6px);
}
#controls select {
background: #0a0a0a;
color: #e8e8e8;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 6px;
padding: 4px 6px;
}