-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (52 loc) · 1 KB
/
style.css
File metadata and controls
59 lines (52 loc) · 1 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
/* OPWV - Organic Particle WebGL Visualizer */
/* Full-screen canvas styling */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
width: 100%;
height: 100%;
overflow: hidden;
background-color: #000;
}
body {
touch-action: none;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
#canvas {
display: block;
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
}
#vr-button {
position: fixed;
bottom: 20px;
right: 20px;
padding: 12px 24px;
background-color: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 4px;
color: white;
font-family: system-ui, -apple-system, sans-serif;
font-size: 14px;
cursor: pointer;
backdrop-filter: blur(10px);
transition: all 0.2s ease;
z-index: 1000;
}
#vr-button:hover {
background-color: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.5);
transform: translateY(-2px);
}
#vr-button:active {
transform: translateY(0);
}