-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (79 loc) · 1.79 KB
/
Copy pathstyle.css
File metadata and controls
89 lines (79 loc) · 1.79 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
78
79
80
81
82
83
84
85
86
87
88
89
:root {
--bg-glass: rgba(15, 23, 42, 0.7);
--accent: #ffa2f7;
--text: #fcfcfc;
}
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
background-color: #000;
}
#ui-container {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
z-index: 1000;
display: flex;
flex-direction: column;
gap: 15px;
padding: 20px;
background: var(--bg-glass);
backdrop-filter: blur(12px);
border: 1px solid rgba(215, 23, 42, 0.1);
border-radius: 20px;
box-shadow: 0 10px 25px rgba(15, 23, 42, 0.5), 0 0 20px var(--bg-accent);
min-width: 260px;
color: var(--text);
}
.control-group {
display: flex;
flex-direction: column;
gap: 8px;
}
label {
font-size: 0.8rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
opacity: 0.8;
background:var(--bg-glass);
}
select {
padding: 10px 15px;
background: var(--bg-glass);
border: 1px solid rgba(49, 44, 44, 0.884);
border-radius: 10px;
color: var(--text);
font-size: 0.9rem;
cursor: pointer;
outline: none;
transition: all 0.2s ease;
}
select:hover {
background: var(--bg-glass);
border-color: var(--accent);
}
button {
padding: 12px 24px;
background: var(--accent);
color: var(--bg-glass);
border: none;
border-radius: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
box-shadow: 0 4px 15px var(--accent);
}
button:hover {
transform: scale(1.02) translateY(-2px);
box-shadow: 0 6px 20px var(--bg-glass);
}
button:active {
transform: scale(0.98);
}
/* Hide AR.js VR button if needed */
.a-enter-vr {
display: none;
}