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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
|
.graph.loading {
padding: 1rem;
}
.graph {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
background: linear-gradient(
0deg,
rgba(128, 0, 64, 0.5),
rgba(0, 0, 64, 0.5)
);
}
.graph canvas {
position: absolute;
top: 0;
left: 0;
}
/* Sidebar boxes */
.sidebar {
position: absolute;
top: 0;
right: 0;
padding: 1rem;
overflow: auto;
max-height: 100%;
z-index: 20;
}
.sidebar.left {
right: auto;
left: 0;
}
.box {
width: 15rem;
padding: 0.5rem;
background: rgba(64,12,64,0.9);
border: 2px solid #000;
box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.box h1,
.box h2 {
font-size: 1rem;
margin: 0 0 0.5rem 0;
}
.box form label {
display: flex;
flex-direction: column;
align-items: flex-start;
margin-bottom: 0.25rem;
}
.box form .buttons {
justify-content: space-between;
}
.box form .buttons label {
width: auto;
min-width: auto;
}
.box form .buttons label span {
display: none;
}
.box form .buttons button:last-child {
margin-right: 0;
}
.box form label.checkbox {
flex-direction: row;
justify-content: flex-start;
align-items: center;
}
.box form label.checkbox.short span {
padding: 0.125rem 0;
}
.box form input[type="checkbox"] {
margin-left: 0rem;
}
.box form input[type=checkbox] + span {
color: #ddd;
}
.box form input[type=checkbox]:hover + span {
color: #fff;
}
.box form input[type="checkbox"]:after {
border-color: #84f;
}
.box form input[type="checkbox"]:checked:after {
border-color: #84f;
background-color: #84f;
}
.box form input[type=checkbox]:hover + span {
color: #84f;
}
.box input[type=text],
.box input[type=number],
.box input[type=password] {
padding: 0.25rem;
max-width: 100%;
border-color: #888;
}
.box textarea {
max-width: 100%;
height: 5rem;
border-color: #888;
}
.box .select {
padding: 0.25rem;
margin-right: 0;
}
.box .single .select {
width: 9.25rem;
}
.box .selects label {
flex-direction: row;
width: 6.5rem;
margin-right: 0.5rem;
min-width: auto;
}
.box form textarea {
padding: 0.25rem;
}
.box form .single label span {
min-width: auto;
width: 4.25rem;
padding: 0.25rem 0;
}
.box .single label {
flex-direction: row;
width: 100%;
margin-right: 0.5px;
min-width: auto;
}
.box form .pair label span {
min-width: 3rem;
padding: 0.25rem 0;
}
.box .pair label {
flex-direction: row;
width: 6.5rem;
margin-right: 0.5px;
min-width: auto;
}
.box .pair input[type=text] {
width: 3rem;
}
.box form .single_text label span {
min-width: auto;
width: 6rem;
padding: 0.25rem 0;
}
.box .single_text input {
width: 7rem;
}
.box .single_text label {
flex-direction: row;
justify-content: space-between;
width: 100%;
margin-right: 0.5px;
min-width: auto;
}
.box .position {
font-size: smaller;
margin-bottom: 0.25rem;
}
button.box_corner {
position: absolute;
top: 1.25rem; right: 1.25rem;
padding: 0.5rem;
background: transparent;
border: 0;
border-radius: 4px;
transform: scaleX(-1);
}
button.box_corner:hover {
color: #fff;
background: rgba(64,64,128,0.5);
}
.sidebar.left button.box_corner {
transform: scaleX(1);
}
.box .slider {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.box .slider span {
min-width: 4rem;
width: 4rem;
padding: 0.125rem 0;
}
.box .slider input[type='number'] {
width: 3.5rem;
}
.box .slider input[type='range'] {
width: 5.5rem;
}
/* Upload area */
.box .uploadButton {
position: relative;
display: flex;
justify-content: center;
align-items: center;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
.uploadButton input[type=file] {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
}
.audioList .audioItem {
display: flex;
justify-content: flex-start;
align-items: center;
cursor: pointer;
padding: 0.125rem 0;
}
.audioList .playButton {
background: transparent;
border: 0;
width: 1.5rem;
height: 1.5rem;
margin-right: 0.5rem;
opacity: 0.8;
}
.audioList .title {
display: flex;
justify-content: flex-start;
align-items: center;
overflow: hidden;
flex: 1;
}
.audioList .title div {
overflow: hidden;
text-overflow: ellipsis;
white-space: pre;
width: 100%;
}
.audioList .audioItem:hover {
background: rgba(255,255,255,0.2);
}
.audioList .audioItem:hover .title {
color: #fff;
}
.audioList .audioItem:hover .playButton {
opacity: 1.0;
}
/* cursors */
.cursorList .cursors {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
}
.cursorList .cursors .cursorItem {
cursor: pointer;
background: rgba(0,0,0,0.0);
transition: all 0.1s;
}
.cursorList .cursors .cursorItem:hover {
border-radius: 5px;
background: rgba(255,0,255,0.1);
display: flex;
justify-content: center;
align-items: center;
width: 50px;
height: 50px;
}
.cursorList .cursors img {
max-width: 50px;
max-height: 50px;
}
/* Graph handles */
.handle {
position: absolute;
border: 2px solid #888;
background: #8833dd;
padding: 0.25rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 12rem;
user-select: none;
cursor: arrow;
}
.handle.homepage {
background: #533854;
border-color: #edc40e;
}
.handle a {
margin-left: 0.25rem;
color: #fff;
font-weight: bold;
text-decoration: none;
}
|