sensivity 2.5.27 → 2.5.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,28 +1,36 @@
1
1
  :root {
2
- --bg: #050508;
3
- --bg2: #0a0a12;
4
- --bg3: #11111d;
5
- --bg4: #1a1a2e;
6
- --bg5: #22223a;
7
- --border: #1c1c30;
8
- --gold: #f0b90b;
9
- --gold2: #d4a00c;
10
- --gold-glow: #f0b90b44;
11
- --text: #e8eaed;
12
- --text2: #7a7d95;
13
- --text3: #4a4d65;
14
- --danger: #e74c3c;
15
- --green: #2ecc71;
16
- --radius: 10px;
17
- --topbar-h: 44px;
2
+ --bg: #020403;
3
+ --bg2: #080a09;
4
+ --bg3: #101310;
5
+ --bg4: #171b18;
6
+ --bg5: #202620;
7
+ --sidebar: #141815;
8
+ --sidebar2: #0d100e;
9
+ --border: #252b27;
10
+ --border2: #2c3a30;
11
+ --accent: #31ff7a;
12
+ --accent2: #14b85a;
13
+ --accent-dim: rgba(49, 255, 122, .2);
14
+ --gold: var(--accent);
15
+ --gold-dim: rgba(49, 255, 122, .16);
16
+ --text: #f2f2f6;
17
+ --text2: #aab5ad;
18
+ --text3: #68726b;
19
+ --danger: #f15d62;
20
+ --green: #52e37c;
21
+ --panel-w: min(1120px, 92vw);
22
+ --panel-h: min(720px, 78dvh);
23
+ --radius: 6px;
18
24
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
19
25
  }
20
26
 
21
27
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
22
28
 
29
+ html, body { min-height: 100%; }
30
+
23
31
  body {
32
+ position: relative;
24
33
  font-family: var(--font);
25
- background: var(--bg);
26
34
  color: var(--text);
27
35
  height: 100dvh;
28
36
  overflow: hidden;
@@ -31,345 +39,954 @@ body {
31
39
  -webkit-tap-highlight-color: transparent;
32
40
  display: flex;
33
41
  flex-direction: column;
34
- }
35
-
36
- ::-webkit-scrollbar { width: 3px; }
42
+ align-items: center;
43
+ justify-content: center;
44
+ padding: 18px;
45
+ background:
46
+ radial-gradient(circle at 50% 42%, rgba(49, 255, 122, .12), transparent 33%),
47
+ radial-gradient(circle at 18% 18%, rgba(49, 255, 122, .06), transparent 24%),
48
+ linear-gradient(180deg, #050705, #010201 72%);
49
+ }
50
+
51
+ body::before,
52
+ body::after {
53
+ content: '';
54
+ position: fixed;
55
+ inset: 0;
56
+ pointer-events: none;
57
+ z-index: -1;
58
+ }
59
+ body::before {
60
+ content: 'SENSIVITY\A BEST PRIVATE';
61
+ z-index: 0;
62
+ display: flex;
63
+ align-items: flex-start;
64
+ justify-content: center;
65
+ padding-top: 20px;
66
+ white-space: pre;
67
+ text-align: center;
68
+ color: rgba(49, 255, 122, .15);
69
+ font-size: clamp(44px, 9.5vw, 128px);
70
+ line-height: .88;
71
+ font-weight: 950;
72
+ letter-spacing: 0;
73
+ text-shadow:
74
+ 0 0 28px rgba(49, 255, 122, .3),
75
+ 0 0 94px rgba(49, 255, 122, .2);
76
+ }
77
+ body::after {
78
+ z-index: 0;
79
+ background-image:
80
+ radial-gradient(circle, rgba(49, 255, 122, .72) 0 1px, transparent 2px),
81
+ radial-gradient(circle, rgba(49, 255, 122, .35) 0 1px, transparent 2px),
82
+ radial-gradient(circle, rgba(255,255,255,.18) 0 1px, transparent 2px);
83
+ background-size: 78px 78px, 126px 126px, 210px 210px;
84
+ background-position: 0 0, 32px 42px, 80px 120px;
85
+ opacity: .72;
86
+ animation: sensivityParticles 13s linear infinite;
87
+ mask-image: radial-gradient(ellipse at center, #000 0 58%, transparent 82%);
88
+ }
89
+
90
+ ::-webkit-scrollbar { width: 4px; height: 4px; }
37
91
  ::-webkit-scrollbar-track { background: transparent; }
38
- ::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 2px; }
92
+ ::-webkit-scrollbar-thumb { background: #2b3c30; border-radius: 2px; }
39
93
 
40
- /* ===== APP ===== */
41
- #app { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
94
+ @keyframes sensivityParticles {
95
+ from { background-position: 0 0, 32px 42px, 80px 120px; }
96
+ to { background-position: 96px -240px, -72px -180px, 180px -120px; }
97
+ }
42
98
 
43
- /* ===== DESKTOP SIDEBAR ===== */
44
- #sidebar {
45
- width: 56px; background: var(--bg2); border-right: 1px solid var(--border);
46
- display: flex; flex-direction: column; align-items: center;
47
- padding: 12px 0; flex-shrink: 0; z-index: 10; gap: 2px;
99
+ #app {
100
+ position: relative;
101
+ z-index: 1;
102
+ width: var(--panel-w);
103
+ height: var(--panel-h);
104
+ min-height: 520px;
105
+ display: flex;
106
+ overflow: hidden;
107
+ background: rgba(8, 10, 9, .96);
108
+ border: 1px solid rgba(47, 66, 53, .68);
109
+ border-radius: var(--radius);
110
+ box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
48
111
  }
49
112
 
50
- #sidebar .tab-btn {
51
- width: 38px; height: 38px; border: none; background: transparent;
52
- color: var(--text3); border-radius: 10px; cursor: pointer;
53
- display: flex; align-items: center; justify-content: center;
54
- transition: all 0.2s; position: relative;
113
+ #sidebar {
114
+ width: 210px;
115
+ flex: 0 0 210px;
116
+ background: linear-gradient(180deg, var(--sidebar), var(--sidebar2));
117
+ border-right: 1px solid #242c27;
118
+ display: flex;
119
+ flex-direction: column;
120
+ overflow: hidden;
55
121
  }
56
122
 
57
- #sidebar .tab-btn svg {
58
- width: 18px; height: 18px; stroke: currentColor;
59
- fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
123
+ .brand {
124
+ height: 70px;
125
+ display: flex;
126
+ align-items: center;
127
+ gap: 12px;
128
+ padding: 0 22px;
129
+ color: #f9f9ff;
130
+ font-size: 20px;
131
+ font-weight: 900;
132
+ letter-spacing: 0;
133
+ }
134
+ .brand img {
135
+ width: 34px;
136
+ height: 34px;
137
+ object-fit: contain;
138
+ filter: drop-shadow(0 0 12px rgba(49, 255, 122, .28));
139
+ }
140
+ .brand span {
141
+ min-width: 0;
142
+ overflow: hidden;
143
+ text-overflow: ellipsis;
60
144
  }
61
145
 
62
- #sidebar .tab-btn:hover { color: var(--text); background: var(--bg3); }
63
- #sidebar .tab-btn.active {
64
- color: var(--gold); background: linear-gradient(135deg, #f0b90b22, transparent);
65
- box-shadow: 0 0 14px var(--gold-glow);
146
+ .nav-scroll {
147
+ flex: 1;
148
+ overflow-y: auto;
149
+ padding: 8px 10px 18px;
66
150
  }
67
- #sidebar .tab-btn.active::before {
68
- content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
69
- width: 3px; background: var(--gold); border-radius: 0 3px 3px 0;
151
+
152
+ .nav-group { margin-bottom: 18px; }
153
+ .nav-heading {
154
+ padding: 0 4px 8px;
155
+ color: #55596d;
156
+ font-size: 12px;
157
+ line-height: 1;
158
+ font-weight: 900;
159
+ letter-spacing: 0;
70
160
  }
71
161
 
72
- /* ===== CONTENT ===== */
73
- #content { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
162
+ .tab-btn {
163
+ width: 100%;
164
+ height: 40px;
165
+ border: 0;
166
+ border-radius: 4px;
167
+ background: transparent;
168
+ color: #6f7287;
169
+ cursor: pointer;
170
+ display: flex;
171
+ align-items: center;
172
+ gap: 14px;
173
+ padding: 0 12px;
174
+ position: relative;
175
+ font-family: var(--font);
176
+ font-size: 13px;
177
+ font-weight: 800;
178
+ transition: background .15s ease, color .15s ease;
179
+ }
180
+
181
+ .tab-btn svg {
182
+ width: 18px;
183
+ height: 18px;
184
+ stroke: currentColor;
185
+ fill: none;
186
+ stroke-width: 1.9;
187
+ stroke-linecap: round;
188
+ stroke-linejoin: round;
189
+ }
190
+
191
+ .tab-btn:hover { color: #c9c6d7; background: rgba(255,255,255,.025); }
192
+ .tab-btn.active {
193
+ color: #fff;
194
+ background: rgba(255,255,255,.045);
195
+ }
196
+ .tab-btn.active::after {
197
+ content: '';
198
+ position: absolute;
199
+ top: 8px;
200
+ bottom: 8px;
201
+ right: 0;
202
+ width: 4px;
203
+ border-radius: 3px 0 0 3px;
204
+ background: var(--accent);
205
+ box-shadow: 0 0 16px rgba(49, 255, 122, .72);
206
+ }
207
+
208
+ #content {
209
+ min-width: 0;
210
+ flex: 1;
211
+ display: flex;
212
+ flex-direction: column;
213
+ overflow: hidden;
214
+ background: rgba(10, 12, 11, .94);
215
+ }
74
216
 
75
- /* ===== TOPBAR ===== */
76
217
  #topbar {
77
- height: var(--topbar-h); background: var(--bg2); border-bottom: 1px solid var(--border);
78
- display: flex; align-items: center; padding: 0 16px; flex-shrink: 0; gap: 6px; overflow: hidden;
218
+ height: 70px;
219
+ flex: 0 0 70px;
220
+ display: flex;
221
+ align-items: center;
222
+ gap: 18px;
223
+ padding: 0 22px;
224
+ border-bottom: 1px solid #242b26;
225
+ background: #0d100e;
79
226
  }
80
- #topbar .tb-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; }
81
- #topbar .title { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; }
82
- #topbar .sep { color: var(--text3); margin: 0 2px; }
83
- #topbar .sub { color: var(--gold); font-size: 12px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
84
- #topbar select {
85
- margin-left: auto; background: var(--bg3); border: 1px solid var(--border);
86
- color: var(--text2); padding: 4px 8px; border-radius: 6px; font-size: 11px;
87
- font-family: var(--font); cursor: pointer; outline: none; max-width: 110px; flex-shrink: 0;
227
+
228
+ .top-title {
229
+ min-width: 164px;
230
+ display: flex;
231
+ align-items: center;
232
+ gap: 12px;
233
+ }
234
+ .tb-icon {
235
+ color: #6e7284;
236
+ display: inline-flex;
237
+ }
238
+ .tb-icon svg {
239
+ width: 18px;
240
+ height: 18px;
241
+ stroke: currentColor;
242
+ fill: none;
243
+ stroke-width: 1.9;
244
+ }
245
+ .top-primary {
246
+ display: block;
247
+ font-size: 19px;
248
+ font-weight: 800;
249
+ color: #5e6070;
250
+ }
251
+ .top-secondary {
252
+ display: block;
253
+ margin-top: 1px;
254
+ color: #b9b5c6;
255
+ font-size: 11px;
256
+ font-weight: 800;
257
+ text-transform: uppercase;
258
+ letter-spacing: 0;
259
+ }
260
+
261
+ .sub-tabs {
262
+ flex: 1;
263
+ min-width: 0;
264
+ display: flex;
265
+ align-items: center;
266
+ gap: 6px;
267
+ overflow-x: auto;
268
+ padding: 6px 0;
269
+ }
270
+ .sub-tab {
271
+ min-width: max-content;
272
+ border: 1px solid transparent;
273
+ border-radius: 4px;
274
+ background: transparent;
275
+ color: #6c6978;
276
+ padding: 7px 10px;
277
+ cursor: pointer;
278
+ font-family: var(--font);
279
+ font-size: 12px;
280
+ font-weight: 800;
281
+ }
282
+ .sub-tab.active {
283
+ color: #fff;
284
+ border-color: rgba(49, 255, 122, .34);
285
+ background: rgba(49, 255, 122, .08);
286
+ }
287
+ .profile-dot {
288
+ width: 36px;
289
+ height: 36px;
290
+ flex: 0 0 36px;
291
+ border-radius: 50%;
292
+ display: grid;
293
+ place-items: center;
294
+ background: #050705;
295
+ border: 1px solid rgba(49, 255, 122, .28);
296
+ box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 0 18px rgba(49, 255, 122, .12);
297
+ }
298
+ .profile-dot img {
299
+ width: 23px;
300
+ height: 23px;
301
+ object-fit: contain;
302
+ }
303
+
304
+ #workspace {
305
+ flex: 1;
306
+ min-height: 0;
307
+ display: flex;
308
+ overflow: hidden;
88
309
  }
89
- #topbar select:focus { border-color: var(--gold); color: var(--text); }
90
310
 
91
- /* ===== PAGES ===== */
92
311
  #pages {
93
- flex: 1; overflow-y: auto; overflow-x: hidden; padding: 12px;
94
- display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
95
- gap: 10px; align-content: start;
312
+ flex: 1 1 auto;
313
+ min-width: 0;
314
+ overflow-y: auto;
315
+ overflow-x: hidden;
316
+ padding: 20px;
317
+ display: grid;
318
+ grid-template-columns: repeat(2, minmax(250px, 1fr));
319
+ grid-auto-rows: max-content;
320
+ gap: 20px;
321
+ align-content: start;
322
+ }
323
+
324
+ #esp-preview-shell {
325
+ display: none;
326
+ flex: 0 0 372px;
327
+ min-width: 0;
328
+ padding: 20px 20px 20px 0;
329
+ overflow: hidden;
96
330
  }
97
331
 
98
- /* ===== CARD ===== */
99
- .child {
100
- background: var(--bg2); border: 1px solid var(--border);
101
- border-radius: var(--radius); padding: 14px;
102
- transition: border-color 0.2s, box-shadow 0.2s;
332
+ #workspace.has-preview #pages {
333
+ flex-basis: calc(100% - 372px);
334
+ grid-template-columns: 1fr;
335
+ }
336
+
337
+ #workspace.has-preview #esp-preview-shell {
338
+ display: block;
103
339
  }
104
- .child:hover { border-color: var(--bg4); }
340
+
341
+ .child {
342
+ min-width: 0;
343
+ background: rgba(21, 21, 27, .72);
344
+ border: 1px solid rgba(43, 55, 47, .78);
345
+ border-top-color: rgba(49, 255, 122, .72);
346
+ border-radius: 8px;
347
+ padding: 18px 18px 16px;
348
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, .018);
349
+ }
350
+ .child:hover { border-color: rgba(68, 93, 76, .9); border-top-color: rgba(49, 255, 122, .95); }
105
351
  .child h3 {
106
- font-size: 9px; text-transform: uppercase; color: var(--gold);
107
- margin-bottom: 12px; letter-spacing: 2px; font-weight: 700;
108
- display: flex; align-items: center; gap: 8px;
352
+ font-size: 12px;
353
+ color: #6f6b79;
354
+ margin-bottom: 16px;
355
+ font-weight: 900;
356
+ letter-spacing: 0;
357
+ }
358
+ .empty-state {
359
+ grid-column: 1 / -1;
360
+ min-height: 220px;
361
+ display: grid;
362
+ place-items: center;
363
+ color: var(--text3);
109
364
  }
110
- .child h3::after { content: ''; flex: 1; height: 1px; background: var(--border); }
111
365
 
112
- /* ===== CONTROL ===== */
113
366
  .ctrl {
114
- margin-bottom: 8px; display: flex; align-items: center;
115
- justify-content: space-between; gap: 10px; min-height: 34px;
367
+ min-height: 38px;
368
+ display: flex;
369
+ align-items: center;
370
+ justify-content: space-between;
371
+ gap: 16px;
372
+ margin-bottom: 10px;
116
373
  }
374
+ .ctrl:last-child { margin-bottom: 0; }
117
375
  .ctrl > label:not(.tgl) {
118
- font-size: 12px; color: var(--text2); flex: 1 1 auto;
119
- min-width: 0; line-height: 1.3; transition: color 0.15s;
120
- overflow: hidden; text-overflow: ellipsis;
376
+ min-width: 0;
377
+ color: #666371;
378
+ font-size: 13px;
379
+ line-height: 1.25;
380
+ font-weight: 800;
381
+ overflow: hidden;
382
+ text-overflow: ellipsis;
383
+ white-space: nowrap;
121
384
  }
122
- .ctrl:hover > label:not(.tgl) { color: var(--text); }
385
+ .ctrl:hover > label:not(.tgl) { color: #aaa6b8; }
123
386
 
124
- /* ===== PREMIUM TOGGLE ===== */
125
387
  .tgl {
126
- position: relative; width: 46px; height: 28px; flex: 0 0 46px;
127
- display: inline-flex; align-items: center; justify-content: center;
128
- }
129
- .tgl input { opacity: 0; width: 0; height: 0; }
388
+ width: 34px;
389
+ height: 20px;
390
+ flex: 0 0 34px;
391
+ position: relative;
392
+ display: inline-flex;
393
+ align-items: center;
394
+ }
395
+ .tgl input { opacity: 0; width: 0; height: 0; position: absolute; }
130
396
  .tgl .track {
131
- position: absolute; cursor: pointer; top: 2px; left: 2px; right: 2px; bottom: 2px;
132
- display: flex; align-items: center; padding: 0 3px;
133
- background: #151625; border-radius: 999px; transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
134
- border: 1px solid #262942; overflow: hidden;
135
- box-shadow: inset 0 1px 2px rgba(0,0,0,.45);
136
- }
137
- .tgl .track::before {
138
- content: ''; position: absolute; inset: 0;
139
- background: radial-gradient(circle at 80% 50%, #f0b90b55, transparent 55%);
140
- opacity: 0; transition: opacity 0.2s ease;
397
+ position: absolute;
398
+ inset: 0;
399
+ cursor: pointer;
400
+ border-radius: 999px;
401
+ background: #222433;
402
+ border: 1px solid #2c2d40;
403
+ transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
141
404
  }
142
405
  .tgl .knob {
143
- position: relative; height: 18px; width: 18px; flex: 0 0 18px;
144
- background: #767b94; border-radius: 50%; transition: transform 0.22s cubic-bezier(.4,0,.2,1), background 0.2s ease, box-shadow 0.2s ease;
145
- z-index: 1; box-shadow: 0 2px 6px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.12);
406
+ position: absolute;
407
+ left: 3px;
408
+ top: 50%;
409
+ width: 12px;
410
+ height: 12px;
411
+ border-radius: 50%;
412
+ background: #595e74;
413
+ transform: translateY(-50%);
414
+ transition: transform .18s ease, background .18s ease;
146
415
  }
147
- .tgl:hover .track { border-color: #343852; }
148
416
  .tgl input:checked + .track {
149
- background: #19180f; border-color: #d4a00c;
150
- box-shadow: inset 0 1px 2px rgba(0,0,0,.4), 0 0 0 1px #f0b90b20, 0 4px 12px #f0b90b18;
151
- }
152
- .tgl input:checked + .track::before { opacity: 1; }
153
- .tgl input:checked + .track .knob,
154
- .tgl input:checked ~ .knob {
155
- transform: translateX(18px); background: var(--gold);
156
- box-shadow: 0 2px 8px #0009, 0 0 10px #f0b90b55, inset 0 1px 0 rgba(255,255,255,.35);
417
+ background: #102318;
418
+ border-color: rgba(49, 255, 122, .56);
419
+ box-shadow: 0 0 12px rgba(49, 255, 122, .26);
157
420
  }
158
- .tgl input:disabled + .track { opacity: 0.4; cursor: not-allowed; }
421
+ .tgl input:checked + .track .knob { transform: translate(14px, -50%); background: var(--accent); }
159
422
 
160
- /* ===== PREMIUM SLIDER ===== */
423
+ .range-ctrl { align-items: flex-start; flex-direction: column; gap: 8px; }
161
424
  .rng {
162
- display: flex; align-items: center; gap: 8px; flex-shrink: 0;
425
+ width: 100%;
426
+ display: grid;
427
+ grid-template-columns: 44px 1fr;
428
+ align-items: center;
429
+ gap: 12px;
430
+ }
431
+ .rng-val {
432
+ color: #6f6b79;
433
+ font-size: 12px;
434
+ font-weight: 900;
435
+ text-align: right;
436
+ font-variant-numeric: tabular-nums;
163
437
  }
164
438
  .rng input[type=range] {
165
- -webkit-appearance: none; width: 90px; height: 6px;
166
- background: var(--bg4); border-radius: 3px; outline: none;
439
+ -webkit-appearance: none;
440
+ width: 100%;
441
+ height: 6px;
442
+ background: #111118;
443
+ border-radius: 999px;
444
+ outline: none;
167
445
  }
168
446
  .rng input[type=range]::-webkit-slider-thumb {
169
- -webkit-appearance: none; width: 18px; height: 18px;
170
- background: var(--gold); border-radius: 50%; cursor: pointer;
171
- box-shadow: 0 0 10px var(--gold-glow); transition: transform 0.15s;
172
- }
173
- .rng input[type=range]::-webkit-slider-thumb:active { transform: scale(1.3); }
174
- .rng .rng-val {
175
- font-size: 11px; color: var(--gold); font-weight: 700;
176
- min-width: 28px; text-align: right; flex-shrink: 0;
177
- font-variant-numeric: tabular-nums;
178
- }
179
-
180
- /* ===== INPUTS ===== */
181
- .ctrl input[type=text], .ctrl input[type=number] {
182
- background: var(--bg3); border: 1px solid var(--border); color: var(--text);
183
- padding: 5px 8px; border-radius: 6px; font-size: 12px; font-family: var(--font);
184
- width: 64px; text-align: center; outline: none; transition: border-color 0.15s;
185
- }
186
- .ctrl input:focus { border-color: var(--gold); }
187
-
447
+ -webkit-appearance: none;
448
+ width: 16px;
449
+ height: 16px;
450
+ border-radius: 50%;
451
+ background: #516558;
452
+ border: 0;
453
+ cursor: pointer;
454
+ box-shadow: 0 0 0 3px rgba(49, 255, 122, .1);
455
+ }
456
+ .rng input[type=range]:active::-webkit-slider-thumb { background: var(--accent); }
457
+
458
+ .ctrl input[type=text],
459
+ .ctrl input[type=number],
188
460
  .ctrl select {
189
- background: var(--bg3); border: 1px solid var(--border); color: var(--text2);
190
- padding: 5px 8px; border-radius: 6px; font-size: 11px; font-family: var(--font);
191
- cursor: pointer; outline: none; max-width: 120px;
461
+ min-width: 130px;
462
+ max-width: 170px;
463
+ height: 34px;
464
+ border: 1px solid #1c1c25;
465
+ border-radius: 4px;
466
+ background: #18181f;
467
+ color: #d8d5e3;
468
+ font: 800 12px var(--font);
469
+ outline: none;
470
+ padding: 0 10px;
471
+ }
472
+ .ctrl select { color: #787485; cursor: pointer; }
473
+ .ctrl input:focus,
474
+ .ctrl select:focus { border-color: rgba(49, 255, 122, .7); }
475
+
476
+ .color-actions {
477
+ display: flex;
478
+ align-items: center;
479
+ gap: 10px;
192
480
  }
193
- .ctrl select:focus { border-color: var(--gold); color: var(--text); }
194
-
195
- /* ===== COLOR PICKER ===== */
196
481
  .clr-btn {
197
- width: 28px; height: 28px; border-radius: 7px; border: 2px solid var(--border);
198
- cursor: pointer; flex-shrink: 0; transition: border-color 0.15s; position: relative;
199
- overflow: hidden; display: inline-block;
200
- }
201
- .clr-btn:hover { border-color: var(--gold); }
202
- .clr-btn input[type=color] {
203
- opacity: 0; position: absolute; inset: -4px; cursor: pointer;
204
- }
205
- .clr-btn .swatch {
206
- width: 100%; height: 100%; border-radius: 4px;
482
+ width: 24px;
483
+ height: 24px;
484
+ flex: 0 0 24px;
485
+ border: 0;
486
+ border-radius: 4px;
487
+ cursor: pointer;
488
+ position: relative;
489
+ overflow: hidden;
490
+ display: inline-block;
491
+ box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 14px rgba(49, 255, 122, .14);
207
492
  }
493
+ .clr-btn input[type=color] { opacity: 0; position: absolute; inset: -4px; cursor: pointer; }
494
+ .clr-btn .swatch { width: 100%; height: 100%; display: block; }
208
495
 
209
- /* ===== KEYBIND BUTTON ===== */
210
496
  .key-btn {
211
- background: var(--bg3); border: 1px solid var(--border); color: var(--text2);
212
- padding: 5px 12px; border-radius: 6px; font-size: 11px; font-family: var(--font);
213
- cursor: pointer; min-width: 48px; text-align: center; transition: all 0.15s; flex-shrink: 0;
214
- font-weight: 600;
497
+ min-width: 62px;
498
+ height: 32px;
499
+ border: 1px solid #1c1c25;
500
+ border-radius: 4px;
501
+ background: #18181f;
502
+ color: #d8d5e3;
503
+ cursor: pointer;
504
+ font: 900 12px var(--font);
215
505
  }
216
- .key-btn:hover { color: var(--text); border-color: var(--bg5); }
217
506
  .key-btn.listening {
218
- color: var(--gold); border-color: var(--gold);
219
- box-shadow: 0 0 12px var(--gold-glow);
220
- animation: key-pulse 0.8s infinite;
507
+ color: #fff;
508
+ border-color: var(--accent);
509
+ box-shadow: 0 0 16px rgba(49, 255, 122, .32);
221
510
  }
222
- @keyframes key-pulse { 0%,100%{ box-shadow: 0 0 4px var(--gold-glow); } 50%{ box-shadow: 0 0 18px var(--gold-glow); } }
223
511
 
224
- /* ===== STATUS BAR ===== */
225
512
  #statusbar {
226
- display: flex; align-items: center; gap: 8px;
227
- padding: 6px 14px; background: var(--bg2); border-top: 1px solid var(--border);
228
- font-size: 11px; color: var(--text2); flex-shrink: 0; z-index: 20;
513
+ position: relative;
514
+ z-index: 1;
515
+ width: var(--panel-w);
516
+ min-height: 42px;
517
+ display: flex;
518
+ align-items: center;
519
+ gap: 10px;
520
+ margin-top: 8px;
521
+ padding: 0 14px;
522
+ border: 1px solid rgba(47, 66, 53, .68);
523
+ border-radius: var(--radius);
524
+ background: rgba(8, 10, 9, .94);
525
+ color: #716f80;
526
+ font-size: 12px;
229
527
  }
230
528
  #statusbar .s-dot {
231
- width: 7px; height: 7px; border-radius: 50%; background: var(--text3); flex-shrink: 0;
232
- }
233
- #statusbar .s-dot.live {
234
- background: var(--green); box-shadow: 0 0 8px #2ecc7188;
235
- animation: dot-pulse 1.5s infinite;
236
- }
237
- @keyframes dot-pulse { 0%,100%{ opacity: 1; } 50%{ opacity: 0.3; } }
238
- #statusbar .s-text { flex: 1; font-size: 11px; }
529
+ width: 8px;
530
+ height: 8px;
531
+ border-radius: 50%;
532
+ background: #5b5a68;
533
+ flex: 0 0 8px;
534
+ }
535
+ #statusbar .s-dot.live { background: var(--green); box-shadow: 0 0 10px rgba(82, 227, 124, .6); }
536
+ #statusbar .s-text { flex: 1; font-weight: 800; }
239
537
  #statusbar .s-btn {
240
- padding: 5px 14px; border-radius: 6px; font-size: 11px; font-weight: 700;
241
- font-family: var(--font); cursor: pointer; transition: all 0.15s;
242
- background: linear-gradient(135deg, var(--gold), var(--gold2));
243
- color: #0a0a0a; border: none; letter-spacing: 0.3px;
244
- }
245
- #statusbar .s-btn:hover { transform: translateY(-1px); box-shadow: 0 3px 12px var(--gold-glow); }
246
- #statusbar .s-btn:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }
247
- #statusbar .s-btn.stop {
248
- background: linear-gradient(135deg, var(--danger), #c0392b); color: #fff;
538
+ height: 30px;
539
+ min-width: 78px;
540
+ border: 0;
541
+ border-radius: 4px;
542
+ background: var(--accent);
543
+ color: #fff;
544
+ cursor: pointer;
545
+ font: 900 12px var(--font);
546
+ box-shadow: 0 0 16px rgba(49, 255, 122, .22);
547
+ }
548
+ #statusbar .s-btn:hover { filter: brightness(1.1); }
549
+ #statusbar .s-btn:disabled { opacity: .35; cursor: not-allowed; box-shadow: none; }
550
+ #statusbar .s-btn.stop { background: var(--danger); box-shadow: 0 0 16px rgba(241, 93, 98, .24); }
551
+ #statusbar .kill-btn {
552
+ background: #151916;
553
+ color: #aaa5b8;
554
+ box-shadow: none;
249
555
  }
250
556
 
251
- /* ===== LICENSE ===== */
252
557
  #license-overlay {
253
- position: fixed; inset: 0; background: var(--bg);
254
- display: flex; align-items: center; justify-content: center; z-index: 1000;
255
- }
256
- #license-overlay::before {
257
- content: ''; position: absolute; inset: 0;
258
- background: radial-gradient(ellipse at center, #f0b90b18 0%, transparent 70%);
259
- animation: bg-pulse 3s ease-in-out infinite;
558
+ position: fixed;
559
+ inset: 0;
560
+ display: flex;
561
+ align-items: center;
562
+ justify-content: center;
563
+ z-index: 1000;
564
+ background: rgba(7, 7, 11, .96);
260
565
  }
261
- @keyframes bg-pulse { 0%,100%{ opacity: 0.3; } 50%{ opacity: 0.7; } }
262
-
263
566
  #license-box {
264
- position: relative; background: var(--bg2); border: 1px solid var(--border);
265
- border-radius: 16px; padding: 34px 28px; width: 400px; max-width: 90vw;
266
- text-align: center; box-shadow: 0 0 60px rgba(0,0,0,.5);
267
- }
268
- #license-box .logo-icon { width: 48px; height: 48px; margin: 0 auto 14px; stroke: var(--gold); fill: none; stroke-width: 1.4; }
269
- #license-box h1 { font-size: 20px; font-weight: 700; margin-bottom: 2px; }
270
- #license-box h1 span { color: var(--gold); }
271
- #license-box .subtitle { color: var(--text3); font-size: 12px; margin-bottom: 20px; }
567
+ width: min(410px, calc(100vw - 34px));
568
+ padding: 34px 28px;
569
+ text-align: center;
570
+ background: #141419;
571
+ border: 1px solid rgba(49, 255, 122, .28);
572
+ border-top-color: var(--accent);
573
+ border-radius: 8px;
574
+ box-shadow: 0 24px 70px rgba(0,0,0,.5);
575
+ }
576
+ #license-box .logo-icon { width: 56px; height: 56px; margin: 0 auto 14px; object-fit: contain; filter: drop-shadow(0 0 16px rgba(49, 255, 122, .24)); }
577
+ #license-box h1 { font-size: 23px; font-weight: 900; margin-bottom: 4px; }
578
+ #license-box h1 span { color: var(--accent); }
579
+ #license-box .subtitle { color: var(--text3); font-size: 12px; margin-bottom: 20px; font-weight: 800; }
272
580
  #license-box input[type=text] {
273
- width: 100%; background: var(--bg3); border: 1px solid var(--border);
274
- color: var(--text); padding: 10px 14px; border-radius: 8px; font-size: 14px;
275
- font-family: var(--font); outline: none; margin-bottom: 12px; text-align: center;
276
- transition: all 0.2s; letter-spacing: 1px;
277
- }
278
- #license-box input[type=text]:focus { border-color: var(--gold); box-shadow: 0 0 0 3px #f0b90b22; }
581
+ width: 100%;
582
+ height: 42px;
583
+ background: #18181f;
584
+ border: 1px solid #262633;
585
+ color: #fff;
586
+ padding: 0 14px;
587
+ border-radius: 4px;
588
+ font: 800 13px var(--font);
589
+ outline: none;
590
+ margin-bottom: 12px;
591
+ text-align: center;
592
+ }
593
+ #license-box input[type=text]:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(49, 255, 122, .14); }
279
594
  #license-box button {
280
- width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold2));
281
- color: #0a0a0a; border: none; padding: 10px; border-radius: 8px; font-size: 14px;
282
- font-weight: 700; font-family: var(--font); cursor: pointer; transition: all 0.2s;
283
- }
284
- #license-box button:hover { transform: translateY(-1px); box-shadow: 0 4px 16px var(--gold-glow); }
285
- #license-box button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
286
- #license-box .msg { margin-top: 10px; font-size: 12px; font-weight: 500; min-height: 16px; }
287
- #license-box .msg.ok { color: var(--green); } #license-box .msg.err { color: var(--danger); }
288
-
289
- /* ===== QR OVERLAY ===== */
290
- #qr-overlay{position:fixed;inset:0;background:rgba(5,5,8,0.93);display:none;align-items:center;justify-content:center;z-index:2000}
291
- #qr-overlay.show{display:flex}
292
- #qr-box{background:var(--bg2);border:1px solid var(--border);border-radius:14px;padding:24px;text-align:center;box-shadow:0 0 40px var(--gold-dim);max-width:90vw}
293
- #qr-box canvas{display:block;margin:0 auto;max-width:240px;max-height:240px}
294
-
295
- /* ===== DESKTOP LAYOUT ===== */
296
- @media(min-width:769px) {
297
- #app { flex-direction: row; }
298
- #sidebar { position: sticky; top: 0; height: 100vh; }
299
- }
300
-
301
- /* ===== MOBILE ===== */
302
- @media(max-width:768px) {
303
- body { background: var(--bg); }
304
-
305
- #app { flex-direction: column; }
306
-
307
- /* Bottom tab bar */
595
+ width: 100%;
596
+ height: 40px;
597
+ background: var(--accent);
598
+ color: #fff;
599
+ border: 0;
600
+ border-radius: 4px;
601
+ font: 900 13px var(--font);
602
+ cursor: pointer;
603
+ }
604
+ #license-box button:disabled { opacity: .45; cursor: not-allowed; }
605
+ #license-box .msg { margin-top: 10px; font-size: 12px; font-weight: 800; min-height: 16px; }
606
+ #license-box .msg.ok { color: var(--green); }
607
+ #license-box .msg.err { color: var(--danger); }
608
+
609
+ #qr-overlay {
610
+ position: fixed;
611
+ inset: 0;
612
+ display: none;
613
+ align-items: center;
614
+ justify-content: center;
615
+ z-index: 2000;
616
+ background: rgba(7, 7, 11, .93);
617
+ }
618
+ #qr-overlay.show { display: flex; }
619
+ #qr-box {
620
+ width: min(340px, calc(100vw - 30px));
621
+ background: #141419;
622
+ border: 1px solid rgba(49, 255, 122, .3);
623
+ border-radius: 8px;
624
+ padding: 22px;
625
+ text-align: center;
626
+ box-shadow: 0 24px 70px rgba(0,0,0,.5);
627
+ }
628
+ #qr-box img { width: min(240px, 74vw) !important; height: auto !important; border-radius: 4px !important; }
629
+
630
+ .esp-preview-panel {
631
+ height: 100%;
632
+ min-height: 430px;
633
+ background: rgba(13, 16, 14, .86);
634
+ border: 1px solid rgba(43, 55, 47, .78);
635
+ border-top-color: rgba(49, 255, 122, .78);
636
+ border-radius: 8px;
637
+ padding: 18px;
638
+ box-shadow: inset 0 1px 0 rgba(255,255,255,.02), 0 18px 42px rgba(0,0,0,.18);
639
+ }
640
+ .esp-preview-panel h3 {
641
+ font-size: 12px;
642
+ color: #819086;
643
+ margin-bottom: 16px;
644
+ font-weight: 900;
645
+ letter-spacing: 0;
646
+ }
647
+ .esp-stage {
648
+ height: calc(100% - 32px);
649
+ min-height: 360px;
650
+ position: relative;
651
+ overflow: hidden;
652
+ border-radius: 6px;
653
+ background:
654
+ linear-gradient(180deg, rgba(22, 27, 24, .9) 0 54%, rgba(12, 23, 15, .94) 54%),
655
+ radial-gradient(circle at 72% 42%, rgba(49, 255, 122, .13), transparent 28%);
656
+ border: 1px solid #202922;
657
+ }
658
+ .esp-grid-bg {
659
+ position: absolute;
660
+ inset: 0;
661
+ background:
662
+ linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
663
+ linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
664
+ background-size: 30px 30px;
665
+ opacity: .35;
666
+ }
667
+ .esp-horizon {
668
+ position: absolute;
669
+ left: -20%;
670
+ right: -20%;
671
+ top: 54%;
672
+ height: 1px;
673
+ background: rgba(255,255,255,.11);
674
+ }
675
+ .esp-crosshair {
676
+ position: absolute;
677
+ left: 50%;
678
+ top: 48%;
679
+ width: 28px;
680
+ height: 28px;
681
+ transform: translate(-50%, -50%);
682
+ border: 1px solid rgba(255,255,255,.2);
683
+ border-radius: 50%;
684
+ }
685
+ .esp-crosshair::before,
686
+ .esp-crosshair::after {
687
+ content: '';
688
+ position: absolute;
689
+ background: rgba(255,255,255,.28);
690
+ }
691
+ .esp-crosshair::before { width: 1px; height: 38px; left: 50%; top: -5px; }
692
+ .esp-crosshair::after { height: 1px; width: 38px; top: 50%; left: -5px; }
693
+ .esp-target {
694
+ position: absolute;
695
+ left: 50%;
696
+ top: 52%;
697
+ width: 98px;
698
+ height: 188px;
699
+ transform: translate(-50%, -50%);
700
+ }
701
+ .esp-target.is-off { opacity: .32; filter: grayscale(.4); }
702
+ .esp-box {
703
+ position: absolute;
704
+ inset: 18px 16px 12px;
705
+ border: var(--esp-thick) dashed var(--esp-color);
706
+ filter: drop-shadow(0 0 7px var(--esp-color));
707
+ z-index: 3;
708
+ }
709
+ .esp-box.solid { border-style: solid; }
710
+ .esp-box.corner { border: 0; }
711
+ .esp-box.corner::before,
712
+ .esp-box.corner::after {
713
+ content: '';
714
+ position: absolute;
715
+ inset: 0;
716
+ background:
717
+ linear-gradient(var(--esp-color), var(--esp-color)) left top / 20px var(--esp-thick) no-repeat,
718
+ linear-gradient(var(--esp-color), var(--esp-color)) left top / var(--esp-thick) 20px no-repeat,
719
+ linear-gradient(var(--esp-color), var(--esp-color)) right top / 20px var(--esp-thick) no-repeat,
720
+ linear-gradient(var(--esp-color), var(--esp-color)) right top / var(--esp-thick) 20px no-repeat,
721
+ linear-gradient(var(--esp-color), var(--esp-color)) left bottom / 20px var(--esp-thick) no-repeat,
722
+ linear-gradient(var(--esp-color), var(--esp-color)) left bottom / var(--esp-thick) 20px no-repeat,
723
+ linear-gradient(var(--esp-color), var(--esp-color)) right bottom / 20px var(--esp-thick) no-repeat,
724
+ linear-gradient(var(--esp-color), var(--esp-color)) right bottom / var(--esp-thick) 20px no-repeat;
725
+ }
726
+ .esp-head {
727
+ position: absolute;
728
+ left: 50%;
729
+ top: 27px;
730
+ width: var(--head-size);
731
+ height: var(--head-size);
732
+ transform: translateX(-50%);
733
+ border: 2px solid var(--esp-color);
734
+ border-radius: 50%;
735
+ filter: drop-shadow(0 0 8px var(--esp-color));
736
+ z-index: 6;
737
+ }
738
+ .esp-skeleton {
739
+ position: absolute;
740
+ left: 50%;
741
+ top: 60px;
742
+ width: 58px;
743
+ height: 102px;
744
+ transform: translateX(-50%);
745
+ z-index: 5;
746
+ pointer-events: none;
747
+ }
748
+ .esp-skeleton span {
749
+ position: absolute;
750
+ background: var(--esp-color);
751
+ box-shadow: 0 0 8px var(--esp-color);
752
+ }
753
+ .esp-skeleton.dashed span { background: repeating-linear-gradient(180deg, var(--esp-color) 0 7px, transparent 7px 11px); }
754
+ .esp-skeleton .spine { left: 50%; top: 0; width: var(--esp-thick); height: 60px; transform: translateX(-50%); }
755
+ .esp-skeleton .arms { left: 12px; top: 24px; width: 34px; height: var(--esp-thick); transform: rotate(8deg); }
756
+ .esp-skeleton .leg { bottom: 0; width: var(--esp-thick); height: 46px; transform-origin: top; }
757
+ .esp-skeleton .leg.left { left: 27px; transform: rotate(17deg); }
758
+ .esp-skeleton .leg.right { left: 30px; transform: rotate(-17deg); }
759
+ .esp-bar {
760
+ position: absolute;
761
+ top: 20px;
762
+ bottom: 14px;
763
+ width: 5px;
764
+ background: rgba(0,0,0,.55);
765
+ border-radius: 999px;
766
+ overflow: hidden;
767
+ box-shadow: 0 0 0 1px rgba(255,255,255,.08);
768
+ z-index: 4;
769
+ }
770
+ .esp-bar.health { left: 5px; }
771
+ .esp-bar.armor { right: 5px; }
772
+ .esp-bar span {
773
+ position: absolute;
774
+ left: 0;
775
+ right: 0;
776
+ bottom: 0;
777
+ height: 78%;
778
+ background: var(--esp-color);
779
+ }
780
+ .esp-bar.armor span { height: 54%; }
781
+ .esp-text {
782
+ position: absolute;
783
+ color: var(--esp-color);
784
+ font-size: 11px;
785
+ line-height: 1;
786
+ font-weight: 900;
787
+ white-space: nowrap;
788
+ text-shadow: 0 1px 4px #000, 0 0 8px var(--esp-color);
789
+ z-index: 7;
790
+ }
791
+ .esp-text.top { left: 50%; top: 0; transform: translate(-50%, -100%); }
792
+ .esp-text.bottom { left: 50%; bottom: -2px; transform: translate(-50%, 100%); }
793
+ .esp-text.left-upper { left: 3px; top: 22px; transform: translateX(-100%); }
794
+ .esp-text.right-upper { right: 3px; top: 22px; transform: translateX(100%); }
795
+ .esp-text.left-lower { left: 3px; bottom: 24px; transform: translateX(-100%); }
796
+ .esp-text.right-lower { right: 3px; bottom: 24px; transform: translateX(100%); }
797
+ .esp-line {
798
+ position: absolute;
799
+ left: 50%;
800
+ width: var(--esp-thick);
801
+ height: 38%;
802
+ background: var(--esp-color);
803
+ box-shadow: 0 0 8px var(--esp-color);
804
+ transform-origin: top;
805
+ z-index: 2;
806
+ }
807
+ .esp-line.place-0 { bottom: 0; top: auto; transform: translateX(-50%) rotate(0deg); }
808
+ .esp-line.place-1 { top: 50%; transform: translate(-50%, -4px) rotate(0deg); }
809
+ .esp-line.place-2 { top: 0; transform: translateX(-50%) rotate(0deg); }
810
+ .esp-tracer {
811
+ position: absolute;
812
+ left: 18%;
813
+ top: 82%;
814
+ width: 72%;
815
+ height: var(--esp-thick);
816
+ background: var(--esp-color);
817
+ transform: rotate(-19deg);
818
+ transform-origin: left center;
819
+ box-shadow: 0 0 8px var(--esp-color);
820
+ z-index: 2;
821
+ }
822
+ .esp-offscreen {
823
+ position: absolute;
824
+ right: 26px;
825
+ top: 34px;
826
+ width: 0;
827
+ height: 0;
828
+ border-top: 10px solid transparent;
829
+ border-bottom: 10px solid transparent;
830
+ border-left: 18px solid var(--esp-color);
831
+ filter: drop-shadow(0 0 8px var(--esp-color));
832
+ }
833
+ .esp-caption {
834
+ position: absolute;
835
+ left: 12px;
836
+ bottom: 10px;
837
+ color: #777486;
838
+ font-size: 11px;
839
+ font-weight: 900;
840
+ }
841
+
842
+ @media (max-width: 900px) {
843
+ body {
844
+ padding: 0;
845
+ justify-content: flex-start;
846
+ }
847
+ #app {
848
+ width: 100vw;
849
+ height: calc(100dvh - 48px);
850
+ min-height: 0;
851
+ border: 0;
852
+ border-radius: 0;
853
+ }
308
854
  #sidebar {
309
- width: 100%; height: 52px; flex-direction: row; justify-content: space-around;
310
- align-items: center; padding: 0 2px; border-right: none; border-top: 1px solid var(--border);
311
- order: 2; flex-shrink: 0; gap: 0; overflow-x: auto;
312
- background: var(--bg2);
855
+ width: 74px;
856
+ flex-basis: 74px;
313
857
  }
314
- #sidebar .tab-btn {
315
- width: 40px; height: 40px; min-width: 40px; border-radius: 8px; flex-shrink: 0;
858
+ .brand {
859
+ height: 58px;
860
+ padding: 0;
861
+ justify-content: center;
862
+ font-size: 0;
863
+ letter-spacing: 0;
316
864
  }
317
- #sidebar .tab-btn svg { width: 17px; height: 17px; }
318
- #sidebar .tab-btn.active::before {
319
- left: 4px; right: 4px; top: auto; bottom: -5px;
320
- width: auto; height: 3px; border-radius: 3px 3px 0 0;
865
+ .brand img { width: 34px; height: 34px; }
866
+ .brand span { display: none; }
867
+ .nav-scroll { padding: 6px; }
868
+ .nav-heading {
869
+ display: none;
870
+ }
871
+ .tab-btn {
872
+ width: 58px;
873
+ height: 50px;
874
+ padding: 0;
875
+ justify-content: center;
876
+ gap: 0;
877
+ margin-bottom: 4px;
878
+ }
879
+ .tab-label { display: none; }
880
+ #topbar {
881
+ height: auto;
882
+ min-height: 64px;
883
+ padding: 10px 12px;
884
+ flex-wrap: wrap;
885
+ gap: 8px;
886
+ }
887
+ .top-title {
888
+ min-width: 0;
889
+ flex: 1 1 auto;
890
+ }
891
+ .top-primary { font-size: 16px; }
892
+ .profile-dot { width: 32px; height: 32px; flex-basis: 32px; }
893
+ .sub-tabs {
894
+ order: 3;
895
+ flex: 0 0 100%;
896
+ gap: 4px;
897
+ }
898
+ .sub-tab {
899
+ padding: 7px 9px;
900
+ font-size: 11px;
901
+ }
902
+ #workspace {
903
+ overflow-y: auto;
904
+ flex-direction: column;
321
905
  }
322
-
323
- #content { order: 1; flex: 1; overflow: hidden; }
324
-
325
- #topbar { height: 40px; padding: 0 10px; gap: 4px; }
326
- #topbar .title { font-size: 12px; }
327
- #topbar .sub { font-size: 11px; }
328
- #topbar select { max-width: 90px; font-size: 10px; padding: 3px 6px; }
329
-
330
906
  #pages {
331
- padding: 10px; grid-template-columns: 1fr; gap: 10px;
907
+ flex: 0 0 auto;
908
+ overflow: visible;
909
+ grid-template-columns: 1fr;
910
+ gap: 12px;
911
+ padding: 12px;
912
+ }
913
+ #workspace.has-preview #pages {
914
+ flex-basis: auto;
915
+ }
916
+ #esp-preview-shell {
917
+ order: -1;
918
+ flex: 0 0 auto;
919
+ padding: 12px 12px 0;
920
+ overflow: visible;
921
+ }
922
+ .child {
923
+ padding: 15px 14px;
924
+ }
925
+ .ctrl {
926
+ min-height: 42px;
927
+ gap: 12px;
332
928
  }
333
-
334
- .child { padding: 13px 12px; border-radius: 8px; }
335
- .child h3 { font-size: 9px; margin-bottom: 12px; letter-spacing: 1.4px; }
336
-
337
- .ctrl { margin-bottom: 8px; min-height: 38px; gap: 10px; }
338
929
  .ctrl > label:not(.tgl) {
339
- font-size: 12px; white-space: normal; overflow: visible;
340
- text-overflow: clip; word-break: break-word;
930
+ white-space: normal;
931
+ overflow: visible;
932
+ text-overflow: clip;
933
+ word-break: break-word;
934
+ font-size: 12px;
341
935
  }
342
-
343
- .tgl { width: 50px; height: 34px; flex-basis: 50px; }
344
- .tgl .track { top: 4px; left: 3px; right: 3px; bottom: 4px; }
345
- .tgl .knob { height: 20px; width: 20px; flex-basis: 20px; }
346
- .tgl input:checked + .track .knob,
347
- .tgl input:checked ~ .knob { transform: translateX(18px); }
348
-
349
- .rng input[type=range] { width: 70px; height: 6px; }
350
- .rng input[type=range]::-webkit-slider-thumb { width: 22px; height: 22px; }
351
- .rng .rng-val { font-size: 12px; }
352
-
353
- .key-btn { padding: 6px 14px; min-width: 52px; font-size: 11px; }
354
-
355
- .clr-btn { width: 32px; height: 32px; }
356
-
357
- #statusbar { order: 3; padding: 5px 10px; font-size: 10px; border-top: none; border-bottom: 1px solid var(--border); }
358
- #statusbar .s-btn { padding: 6px 14px; font-size: 11px; }
359
-
360
- #license-box { padding: 28px 18px; border-radius: 14px; }
361
- #license-box h1 { font-size: 18px; }
362
- #license-box input[type=text] { padding: 12px 12px; font-size: 16px; }
363
- #license-box button { padding: 12px; font-size: 15px; }
364
-
365
- input, select, button { font-size: 16px !important; }
936
+ .ctrl input[type=text],
937
+ .ctrl input[type=number],
938
+ .ctrl select {
939
+ min-width: 112px;
940
+ max-width: 142px;
941
+ font-size: 12px;
942
+ }
943
+ .esp-preview-panel {
944
+ min-height: 360px;
945
+ height: auto;
946
+ }
947
+ .esp-stage { height: 300px; min-height: 300px; }
948
+ #statusbar {
949
+ position: fixed;
950
+ left: 0;
951
+ right: 0;
952
+ bottom: 0;
953
+ width: auto;
954
+ margin: 0;
955
+ min-height: 48px;
956
+ border-left: 0;
957
+ border-right: 0;
958
+ border-bottom: 0;
959
+ border-radius: 0;
960
+ gap: 7px;
961
+ overflow: hidden;
962
+ }
963
+ #statusbar .s-text { flex: 0 0 auto; min-width: 0; }
964
+ #statusbar .s-btn {
965
+ min-width: 52px;
966
+ flex: 0 0 52px;
967
+ height: 32px;
968
+ padding: 0 8px;
969
+ font-size: 10px;
970
+ }
971
+ #statusbar .kill-btn { flex-basis: 46px; min-width: 46px; }
366
972
  }
367
973
 
368
- @media(max-width:380px) {
369
- #sidebar .tab-btn { width: 34px; height: 36px; min-width: 34px; }
370
- #sidebar .tab-btn svg { width: 15px; height: 15px; }
371
- .rng input[type=range] { width: 56px; }
372
- .ctrl { gap: 8px; }
373
- .ctrl > label:not(.tgl) { font-size: 11px; }
374
- .tgl { width: 48px; flex-basis: 48px; }
974
+ @media (max-width: 600px) {
975
+ #sidebar {
976
+ width: 58px;
977
+ flex-basis: 58px;
978
+ }
979
+ .tab-btn {
980
+ width: 44px;
981
+ height: 44px;
982
+ }
983
+ .tab-btn svg { width: 17px; height: 17px; }
984
+ .brand { font-size: 0; }
985
+ #topbar { padding: 9px 10px; }
986
+ .sub-tab { font-size: 10px; padding: 6px 8px; }
987
+ .rng { grid-template-columns: 38px 1fr; gap: 8px; }
988
+ .color-row { align-items: flex-start; }
989
+ .color-actions { flex-shrink: 0; }
990
+ .esp-stage { height: 280px; min-height: 280px; }
991
+ .esp-preview-panel { min-height: 334px; }
375
992
  }