-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
163 lines (144 loc) · 3.76 KB
/
style.css
File metadata and controls
163 lines (144 loc) · 3.76 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
overflow: hidden;
font-family: 'Courier New', monospace;
}
#container {
position: relative;
width: 100vw;
height: 100vh;
}
.ui-panel {
position: absolute;
top: 20px;
left: 20px;
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(15px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 15px;
padding: 20px;
color: white;
z-index: 100;
min-width: 300px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.ui-panel h2 {
color: #00ffff;
margin-bottom: 15px;
text-shadow: 0 0 10px #00ffff;
font-size: 18px;
}
.control-group {
margin-bottom: 15px;
}
.control-group label {
display: block;
margin-bottom: 5px;
font-size: 12px;
color: #ccc;
}
.control-group input[type="range"] {
width: 100%;
accent-color: #00ffff;
}
.control-group input[type="file"] {
width: 100%;
padding: 8px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 5px;
color: white;
font-size: 12px;
}
.btn {
background: linear-gradient(45deg, #00ffff, #0080ff);
border: none;
padding: 10px 20px;
border-radius: 25px;
color: white;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
margin: 5px;
font-size: 12px;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}
.btn:active {
transform: translateY(0);
}
.spectrum {
position: absolute;
bottom: 20px;
left: 20px;
right: 20px;
height: 80px;
background: rgba(0, 0, 0, 0.7);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.2);
display: flex;
align-items: end;
padding: 10px;
gap: 2px;
}
.spectrum-bar {
flex: 1;
background: linear-gradient(to top, #ff006e, #8338ec, #3a86ff);
border-radius: 2px;
transition: height 0.1s ease;
min-height: 2px;
}
.info-display {
position: absolute;
top: 20px;
right: 20px;
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(15px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 15px;
padding: 15px;
color: white;
font-size: 12px;
min-width: 200px;
}
.waveform {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 300px;
height: 100px;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 10px;
background: rgba(0, 0, 0, 0.5);
display: none;
}
#waveformCanvas {
width: 100%;
height: 100%;
border-radius: 10px;
}
.loading {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-size: 24px;
text-align: center;
z-index: 1000;
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}