-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
291 lines (259 loc) · 5.52 KB
/
style.css
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
body {
margin: 0;
height: 100%;
width: 100%;
}
html {
height: 100%;
width: 100%;
}
.multiViewBox {
position: absolute;
border-style: solid;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
font-size: 50px;
font-family: sans-serif;
transform: translate(-50%,-50%);
border-width: 5px;
border-color: rgba(180,180,180,1);
pointer-events: none;
/* outline: rgba(180,180,180,1); */
/* outline-width: 5px; */
/* outline-style: solid; */
}
.outerContainer {
height: 100%;
width: 100%;
background-size: contain;
background-repeat: no-repeat;
}
* {
overflow: hidden;
font-family: sans-serif;
transition-duration: 0.3s;
}
.inputTitle {
font-size: 22px;
background-color: rgba(70,70,70);
color: white;
text-shadow: 1px 1px 0px black;
padding: 4px 8px;
border-radius: 5px;
border-style: solid;
border-color: white;
position: absolute;
bottom: 25px;
/* margin: 0 15%; */
text-overflow: ellipsis;
white-space: nowrap;
max-width: 75%;
pointer-events: all;
border-width: 1.5px;
opacity: 0.7;
}
.multiViewBox.program {
border-color: red !important;
}
.multiViewBox.preview {border-color: #0de416;}
.audioMeter {
width: 25%;
padding: 10px 0px 10px 5px;
display: flex;
align-items: flex-end;
overflow: visible;
}
.audioMeterContainer {
height: 95%;
width: 100%;
position: relative;
display: flex;
pointer-events: none;
}
.actualMeter {
transition-duration: 0s;
height: 90%;
width: 22%;
/* transition: all 0.05s ease; */
background: linear-gradient(0deg, #4CAF50 0%, #4CAF50 53.2%, #FFEB3B 36%, #FFEB3B 85%, #F44336 59%, rgb(221 81 81 / 1) 100%);
background-position: center top;
background-repeat: no-repeat;
background-size: contain;
-webkit-mask: url(./mask.png);
-webkit-mask-size: cover;
-webkit-mask-repeat: no-repeat;
/* clip-path: inset(0% 0% 0% 0%) !important; */
-webkit-mask-position: bottom;
position: absolute;
opacity: 0.7;
}
.leftAlignContainer {
height: 74%;
background-color: rgba(0,0,0,0.3);
border-radius: 5px;
position: absolute;
left: 4px;
width: 7%;
bottom: 8px;
}
.VUlabel {
font-size: 1.4rem;
color: gainsboro;
height: 10%;
display: flex;
/* justify-content: center; */
align-items: center;
transform-origin: right;
overflow: visible;
}
.VUlabels {
overflow: visible;
position: absolute;
right: 1px;
display: flex;
justify-content: flex-end;
height: 100%;
flex-direction: column;
padding: 10px 0px 10px 5px;
}
.LRlabel {
font-size: 2rem;
color: gainsboro;
transform-origin: top;
overflow: visible;
display: inline;
width: 53%;
}
.LRlabels {
display: flex;
justify-content: space-evenly;
width: 69%;
padding-left: 6%;
}
.meterOutline {
height: 90%;
width: 22%;
/* transition: all 0.05s ease; */
background: url(./mask.png);
background-position: center top;
background-repeat: no-repeat;
background-size: cover;
-webkit-mask: url(./mask.png);
-webkit-mask-size: cover;
-webkit-mask-repeat: no-repeat;
clip-path: inset(0% 0% 0% 0%) !important;
-webkit-mask-position: bottom;
position: absolute;
opacity: 0.2;
}
.warning {
position: absolute;
background-color: rgba(0,0,0,0.5);
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
z-index: 10;
color: white;
font-size: xxx-large;
font-family: sans-serif;
font-weight: bold;
text-shadow: 2px 2px 1px black;
}
/* Stijl voor het formulier en de container */
.formContainer {
background-color: #333;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
width: 300px;
position: absolute;
top: 20px;
left: 20px;
}
label {
display: block;
margin-bottom: 5px;
color: #FFF;
font-size: 14px;
}
.inputField {
width: 100%;
padding: 8px;
margin-bottom: 20px;
border: 1px solid #555;
border-radius: 5px;
background-color: #444;
color: #FFF;
box-sizing: border-box;
}
.saveButton {
width: 100%;
padding: 10px;
background-color: #28a745;
color: #FFF;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
.saveButton:hover {
background-color: #218838;
}
/* Schakelaar voor Audio Meters */
.switch {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
}
/* Label voor schakelaar */
.switch label {
color: #FFF;
font-size: 14px;
}
/* Input field verbergen */
.switch input {
display: none;
}
/* Slider styling */
.slider {
position: relative;
display: inline-block;
width: 50px;
height: 24px;
background-color: #444;
border-radius: 24px;
margin: 0 10px;
cursor: pointer;
transition: background-color 0.4s;
}
/* Ronde knop binnen de slider */
.slider:before {
position: absolute;
content: "";
height: 20px;
width: 20px;
left: 2px;
bottom: 2px;
background-color: white;
border-radius: 50%;
transition: transform 0.4s;
}
/* Als de schakelaar is ingeschakeld */
input:checked + .slider {
background-color: #28a745;
}
input:checked + .slider:before {
transform: translateX(26px);
}
/* Slider rond maken */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}