@dstackai/sqircle 0.1.0 → 0.1.1

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.
@@ -0,0 +1,883 @@
1
+ :root {
2
+ --page-text: #0f141a;
3
+ --caption: #656871;
4
+ --panel: rgba(255, 255, 255, 0.8);
5
+ --panel-border: #e9ebed;
6
+ }
7
+
8
+ * {
9
+ box-sizing: border-box;
10
+ }
11
+
12
+ html,
13
+ body {
14
+ min-height: 100%;
15
+ margin: 0;
16
+ }
17
+
18
+ body {
19
+ background: transparent;
20
+ color: var(--page-text);
21
+ font-family:
22
+ Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
23
+ sans-serif;
24
+ }
25
+
26
+ .svg-defs {
27
+ position: absolute;
28
+ width: 0;
29
+ height: 0;
30
+ overflow: hidden;
31
+ }
32
+
33
+ .page-shell {
34
+ width: min(100%, 1180px);
35
+ margin-inline: auto;
36
+ padding: clamp(18px, 4vw, 54px);
37
+ }
38
+
39
+ .mode-radio,
40
+ .variant-radio {
41
+ position: absolute;
42
+ width: 1px;
43
+ height: 1px;
44
+ overflow: hidden;
45
+ clip: rect(0 0 0 0);
46
+ white-space: nowrap;
47
+ }
48
+
49
+ .mode-row {
50
+ display: flex;
51
+ justify-content: flex-end;
52
+ margin-bottom: 12px;
53
+ }
54
+
55
+ .mode-switch {
56
+ display: inline-grid;
57
+ grid-template-columns: repeat(2, minmax(104px, 1fr));
58
+ gap: 2px;
59
+ padding: 3px;
60
+ border: 1px solid #dfe7f2;
61
+ border-radius: 8px;
62
+ background: rgba(255, 255, 255, 0.72);
63
+ }
64
+
65
+ .mode-switch label {
66
+ display: grid;
67
+ min-height: 32px;
68
+ place-items: center;
69
+ border-radius: 6px;
70
+ color: #596171;
71
+ cursor: pointer;
72
+ font-size: 13px;
73
+ font-weight: 800;
74
+ letter-spacing: 0;
75
+ transition:
76
+ background-color 220ms ease,
77
+ color 220ms ease,
78
+ box-shadow 220ms ease;
79
+ }
80
+
81
+ #mode-transparent:focus-visible ~ .mode-row label[for="mode-transparent"],
82
+ #mode-wireframe:focus-visible ~ .mode-row label[for="mode-wireframe"] {
83
+ outline: 2px solid #0099ff;
84
+ outline-offset: 2px;
85
+ }
86
+
87
+ #mode-transparent:checked ~ .mode-row label[for="mode-transparent"],
88
+ #mode-wireframe:checked ~ .mode-row label[for="mode-wireframe"] {
89
+ color: #152234;
90
+ background: #ffffff;
91
+ box-shadow: 0 1px 5px rgba(15, 20, 26, 0.11);
92
+ }
93
+
94
+ .hero-card,
95
+ .variant-card {
96
+ --top-fill: url("#top-15");
97
+ --side-fill: url("#side-15");
98
+ --gpu-surface-fill: url("#gpu-surface-15");
99
+ --active-left: #0099ff;
100
+ --active-right: #962eff;
101
+ --active-side: #7f6ff5;
102
+ --active-corner: #6f7ff0;
103
+ --ghost-top: #9ba9d6;
104
+ --ghost-left: #6f91d0;
105
+ --ghost-right: #8065ca;
106
+ --ghost-side: #94a5d7;
107
+ --ghost-corner: #8f9fd5;
108
+ --active-alpha: 1;
109
+ --ghost-alpha: 0.34;
110
+ --ghost-fill-opacity: 1;
111
+ --ghost-hidden-opacity: 0;
112
+ --ghost-stroke-width: 0;
113
+ --label-fill: #24105e;
114
+ --label-wire-width: 1.1;
115
+ --top-edge: #7c5fd0;
116
+ --side-edge: #2d1466;
117
+ --face-edge-opacity: 0.72;
118
+ --face-edge-width: 0.35;
119
+ border: 1px solid var(--panel-border);
120
+ border-radius: 8px;
121
+ background:
122
+ linear-gradient(145deg, rgba(184, 231, 255, 0.14), rgba(255, 255, 255, 0) 52%),
123
+ var(--panel);
124
+ }
125
+
126
+ .hero-card {
127
+ display: grid;
128
+ grid-template-columns: minmax(280px, 780px) minmax(120px, 1fr);
129
+ align-items: center;
130
+ gap: clamp(14px, 4vw, 48px);
131
+ padding: clamp(14px, 3vw, 28px);
132
+ }
133
+
134
+ .hero-squircle,
135
+ .mini-squircle {
136
+ display: block;
137
+ width: 100%;
138
+ overflow: visible;
139
+ }
140
+
141
+ .hero-squircle {
142
+ aspect-ratio: 800 / 480;
143
+ }
144
+
145
+ .mini-squircle {
146
+ aspect-ratio: 800 / 480;
147
+ }
148
+
149
+ .hero-copy p {
150
+ margin: 0;
151
+ color: #424650;
152
+ font-size: clamp(20px, 2.2vw, 30px);
153
+ font-weight: 800;
154
+ letter-spacing: 0;
155
+ }
156
+
157
+ .variant-title {
158
+ display: none;
159
+ }
160
+
161
+ #variant-13:checked ~ .hero-card .title-13,
162
+ #variant-14:checked ~ .hero-card .title-14,
163
+ #variant-15:checked ~ .hero-card .title-15,
164
+ #variant-16:checked ~ .hero-card .title-16,
165
+ #variant-17:checked ~ .hero-card .title-17,
166
+ #variant-18:checked ~ .hero-card .title-18,
167
+ #variant-19:checked ~ .hero-card .title-19,
168
+ #variant-20:checked ~ .hero-card .title-20 {
169
+ display: inline;
170
+ }
171
+
172
+ #variant-13:checked ~ .hero-card,
173
+ #variant-13:checked ~ .single-drawer {
174
+ --top-fill: url("#top-13");
175
+ --side-fill: url("#side-13");
176
+ --gpu-surface-fill: url("#gpu-surface-13");
177
+ --label-fill: #2a1060;
178
+ --top-edge: #7c5fd0;
179
+ --side-edge: #2d1466;
180
+ }
181
+
182
+ #variant-14:checked ~ .hero-card,
183
+ #variant-14:checked ~ .single-drawer {
184
+ --top-fill: url("#top-14");
185
+ --side-fill: url("#side-14");
186
+ --gpu-surface-fill: url("#gpu-surface-14");
187
+ --label-fill: #063f6a;
188
+ --top-edge: #237aa8;
189
+ --side-edge: #063f6a;
190
+ }
191
+
192
+ #variant-15:checked ~ .hero-card,
193
+ #variant-15:checked ~ .single-drawer {
194
+ --top-fill: url("#top-15");
195
+ --side-fill: url("#side-15");
196
+ --gpu-surface-fill: url("#gpu-surface-15");
197
+ --label-fill: #f7fbff;
198
+ --top-edge: #7c5fd0;
199
+ --side-edge: #2d1466;
200
+ }
201
+
202
+ #variant-16:checked ~ .hero-card,
203
+ #variant-16:checked ~ .single-drawer {
204
+ --top-fill: url("#top-16");
205
+ --side-fill: url("#side-16");
206
+ --gpu-surface-fill: url("#gpu-surface-16");
207
+ --label-fill: #10246a;
208
+ --top-edge: #3e65c8;
209
+ --side-edge: #10246a;
210
+ }
211
+
212
+ #variant-17:checked ~ .hero-card,
213
+ #variant-17:checked ~ .single-drawer {
214
+ --top-fill: url("#top-17");
215
+ --side-fill: url("#side-17");
216
+ --gpu-surface-fill: url("#gpu-surface-17");
217
+ --label-fill: #17245e;
218
+ --top-edge: #5f6ed0;
219
+ --side-edge: #17245e;
220
+ }
221
+
222
+ #variant-18:checked ~ .hero-card,
223
+ #variant-18:checked ~ .single-drawer {
224
+ --top-fill: url("#top-18");
225
+ --side-fill: url("#side-18");
226
+ --gpu-surface-fill: url("#gpu-surface-18");
227
+ --label-fill: #064272;
228
+ --top-edge: #4f94c0;
229
+ --side-edge: #064272;
230
+ }
231
+
232
+ #variant-19:checked ~ .hero-card,
233
+ #variant-19:checked ~ .single-drawer {
234
+ --top-fill: url("#top-19");
235
+ --side-fill: url("#side-19");
236
+ --gpu-surface-fill: url("#gpu-surface-19");
237
+ --label-fill: #12306f;
238
+ --top-edge: #6470d8;
239
+ --side-edge: #12306f;
240
+ }
241
+
242
+ #variant-20:checked ~ .hero-card,
243
+ #variant-20:checked ~ .single-drawer {
244
+ --top-fill: url("#top-20");
245
+ --side-fill: url("#side-20");
246
+ --gpu-surface-fill: url("#gpu-surface-20");
247
+ --label-fill: #17245e;
248
+ --top-edge: #5a7bd0;
249
+ --side-edge: #17245e;
250
+ }
251
+
252
+ .face {
253
+ pointer-events: all;
254
+ shape-rendering: geometricPrecision;
255
+ stroke-linejoin: round;
256
+ }
257
+
258
+ .ghost-side {
259
+ fill: var(--ghost-side-fill, var(--side-fill, var(--ghost-side)));
260
+ fill-opacity: var(--ghost-fill-opacity, 1);
261
+ stroke: var(--ghost-side-stroke, var(--side-edge));
262
+ stroke-opacity: var(--ghost-stroke-opacity, var(--face-edge-opacity));
263
+ stroke-width: var(--ghost-stroke-width, var(--face-edge-width));
264
+ }
265
+
266
+ .ghost-top {
267
+ fill: var(--ghost-top-fill, var(--top-fill));
268
+ fill-opacity: var(--ghost-fill-opacity, 1);
269
+ stroke: var(--ghost-top-stroke, var(--top-edge));
270
+ stroke-opacity: var(--ghost-stroke-opacity, var(--face-edge-opacity));
271
+ stroke-width: var(--ghost-stroke-width, var(--face-edge-width));
272
+ }
273
+
274
+ .ghost-hidden {
275
+ fill: none;
276
+ opacity: var(--ghost-hidden-opacity, 0);
277
+ pointer-events: none;
278
+ stroke: var(--ghost-hidden-stroke, var(--top-fill));
279
+ stroke-dasharray: 8 8;
280
+ stroke-linecap: round;
281
+ stroke-linejoin: round;
282
+ stroke-width: var(--ghost-hidden-stroke-width, 1.8);
283
+ }
284
+
285
+ .active-side {
286
+ fill: var(--active-side-fill, var(--side-fill, var(--active-side)));
287
+ stroke: var(--side-edge);
288
+ stroke-opacity: var(--face-edge-opacity);
289
+ stroke-width: var(--face-edge-width);
290
+ }
291
+
292
+ .active-top {
293
+ fill: var(--top-fill);
294
+ stroke: var(--top-edge);
295
+ stroke-opacity: var(--face-edge-opacity);
296
+ stroke-width: var(--face-edge-width);
297
+ }
298
+
299
+ .top-inlay {
300
+ fill: none;
301
+ pointer-events: none;
302
+ stroke: var(--dash-solid-stroke, var(--label-fill));
303
+ stroke-dasharray: 9 8;
304
+ stroke-linejoin: round;
305
+ stroke-width: 2.2;
306
+ }
307
+
308
+ .plane-label {
309
+ clip-rule: evenodd;
310
+ fill: var(--label-fill);
311
+ fill-rule: evenodd;
312
+ paint-order: stroke;
313
+ pointer-events: none;
314
+ shape-rendering: geometricPrecision;
315
+ stroke: none;
316
+ stroke-linecap: round;
317
+ stroke-linejoin: round;
318
+ stroke-width: 0;
319
+ transition:
320
+ fill 250ms ease,
321
+ stroke 250ms ease,
322
+ stroke-width 250ms ease,
323
+ opacity 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
324
+ }
325
+
326
+ .wire-inlay {
327
+ fill: none;
328
+ opacity: 0;
329
+ pointer-events: none;
330
+ stroke: var(--dash-wire-stroke, var(--top-fill));
331
+ stroke-dasharray: 8 8;
332
+ stroke-linejoin: round;
333
+ stroke-width: 1.6;
334
+ }
335
+
336
+ .interactive-layer {
337
+ cursor: pointer;
338
+ }
339
+
340
+ .interactive-layer .ghost,
341
+ .interactive-layer .active,
342
+ .layer-inlay,
343
+ .layer-label,
344
+ .layer-inlay-wire {
345
+ transition: opacity 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
346
+ }
347
+
348
+ .interactive-layer .ghost {
349
+ opacity: var(--ghost-alpha);
350
+ }
351
+
352
+ .interactive-layer .active {
353
+ opacity: 0;
354
+ }
355
+
356
+ .layer-inlay,
357
+ .layer-label,
358
+ .layer-inlay-wire {
359
+ opacity: 0;
360
+ pointer-events: none;
361
+ }
362
+
363
+ .layer-middle .layer-inlay {
364
+ opacity: 0.56;
365
+ }
366
+
367
+ .layer-top .layer-label {
368
+ opacity: 0.28;
369
+ }
370
+
371
+ .hero-squircle:not(:hover) .interactive-layer.is-default .ghost {
372
+ opacity: 0;
373
+ }
374
+
375
+ .hero-squircle:not(:hover) .interactive-layer.is-default .active {
376
+ opacity: var(--active-alpha);
377
+ }
378
+
379
+ .hero-squircle:not(:hover) .interactive-layer.is-default .layer-label {
380
+ opacity: 0.88;
381
+ }
382
+
383
+ .hero-squircle:hover .interactive-layer .ghost {
384
+ opacity: 0.2;
385
+ }
386
+
387
+ .hero-squircle:hover .interactive-layer .layer-label {
388
+ opacity: 0.22;
389
+ }
390
+
391
+ .hero-squircle:hover .interactive-layer:hover .ghost {
392
+ opacity: 0;
393
+ }
394
+
395
+ .hero-squircle:hover .interactive-layer:hover .active {
396
+ opacity: var(--active-alpha);
397
+ }
398
+
399
+ .hero-squircle:hover .interactive-layer:hover .layer-inlay {
400
+ opacity: 0.9;
401
+ }
402
+
403
+ .hero-squircle:hover .interactive-layer:hover .layer-label {
404
+ opacity: 0.88;
405
+ }
406
+
407
+ .static-inlay {
408
+ opacity: 0.88;
409
+ pointer-events: none;
410
+ }
411
+
412
+ .static-label {
413
+ opacity: 0.88;
414
+ pointer-events: none;
415
+ }
416
+
417
+ .static-squircle .ghost {
418
+ opacity: var(--ghost-alpha);
419
+ }
420
+
421
+ .static-squircle .top-preview .ghost {
422
+ opacity: 0;
423
+ }
424
+
425
+ .static-squircle .active {
426
+ opacity: var(--active-alpha);
427
+ }
428
+
429
+ .variant-drawer,
430
+ .single-drawer {
431
+ margin-top: 16px;
432
+ }
433
+
434
+ .variant-drawer summary,
435
+ .single-drawer summary {
436
+ width: max-content;
437
+ cursor: pointer;
438
+ color: #424650;
439
+ font-size: 15px;
440
+ font-weight: 800;
441
+ letter-spacing: 0;
442
+ list-style-position: outside;
443
+ }
444
+
445
+ .variant-drawer summary::marker,
446
+ .single-drawer summary::marker {
447
+ color: #006ce0;
448
+ }
449
+
450
+ .variant-grid,
451
+ .single-grid {
452
+ display: grid;
453
+ grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
454
+ gap: 12px;
455
+ margin-top: 12px;
456
+ }
457
+
458
+ .single-grid {
459
+ grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
460
+ }
461
+
462
+ .variant-card {
463
+ --label-wire-width: 1.1;
464
+ display: grid;
465
+ gap: 6px;
466
+ align-content: start;
467
+ min-width: 0;
468
+ padding: 10px;
469
+ cursor: pointer;
470
+ transition:
471
+ border-color 180ms ease,
472
+ box-shadow 180ms ease,
473
+ transform 180ms ease;
474
+ }
475
+
476
+ .variant-card span {
477
+ color: var(--caption);
478
+ font-size: 12px;
479
+ font-weight: 800;
480
+ letter-spacing: 0;
481
+ }
482
+
483
+ .single-drawer {
484
+ --top-fill: url("#top-15");
485
+ --side-fill: url("#side-15");
486
+ --label-fill: #f7fbff;
487
+ --label-wire-width: 1.1;
488
+ --top-edge: #7c5fd0;
489
+ --side-edge: #2d1466;
490
+ --face-edge-opacity: 0.72;
491
+ --face-edge-width: 0.35;
492
+ }
493
+
494
+ .single-card {
495
+ display: grid;
496
+ gap: 6px;
497
+ align-content: start;
498
+ min-width: 0;
499
+ padding: 10px;
500
+ border: 1px solid var(--panel-border);
501
+ border-radius: 8px;
502
+ background:
503
+ linear-gradient(145deg, rgba(184, 231, 255, 0.1), rgba(255, 255, 255, 0) 54%),
504
+ var(--panel);
505
+ }
506
+
507
+ .single-card span {
508
+ color: var(--caption);
509
+ font-size: 12px;
510
+ font-weight: 800;
511
+ letter-spacing: 0;
512
+ }
513
+
514
+ .single-squircle {
515
+ display: block;
516
+ width: 100%;
517
+ aspect-ratio: 812 / 314;
518
+ overflow: visible;
519
+ }
520
+
521
+ .single-active {
522
+ opacity: var(--active-alpha);
523
+ }
524
+
525
+ .single-ghost {
526
+ opacity: 0.38;
527
+ }
528
+
529
+ .single-inlay {
530
+ opacity: 0.88;
531
+ pointer-events: none;
532
+ }
533
+
534
+ .single-label {
535
+ opacity: 0.88;
536
+ }
537
+
538
+ .single-transparent .single-label {
539
+ opacity: 0.62;
540
+ }
541
+
542
+ .single-transparent .single-inlay {
543
+ opacity: 0.62;
544
+ }
545
+
546
+ .single-wire {
547
+ --ghost-fill-opacity: 0;
548
+ --ghost-hidden-opacity: 0.28;
549
+ --ghost-hidden-stroke: var(--top-fill);
550
+ --ghost-hidden-stroke-width: 1.2;
551
+ --ghost-stroke-opacity: 1;
552
+ --ghost-side-fill: transparent;
553
+ --ghost-side-stroke: var(--top-fill);
554
+ --ghost-stroke-width: 1.6;
555
+ --ghost-top-fill: transparent;
556
+ --ghost-top-stroke: var(--top-fill);
557
+ }
558
+
559
+ .single-wire .single-ghost {
560
+ opacity: 0.88;
561
+ }
562
+
563
+ .single-wire .plane-label {
564
+ fill: none !important;
565
+ opacity: 0.88;
566
+ stroke: var(--top-fill);
567
+ stroke-width: var(--label-wire-width);
568
+ }
569
+
570
+ .single-wire .single-wire-inlay {
571
+ opacity: 0.88;
572
+ }
573
+
574
+ #variant-13:checked ~ .variant-drawer label[for="variant-13"],
575
+ #variant-14:checked ~ .variant-drawer label[for="variant-14"],
576
+ #variant-15:checked ~ .variant-drawer label[for="variant-15"],
577
+ #variant-16:checked ~ .variant-drawer label[for="variant-16"],
578
+ #variant-17:checked ~ .variant-drawer label[for="variant-17"],
579
+ #variant-18:checked ~ .variant-drawer label[for="variant-18"],
580
+ #variant-19:checked ~ .variant-drawer label[for="variant-19"],
581
+ #variant-20:checked ~ .variant-drawer label[for="variant-20"] {
582
+ border-color: rgba(0, 153, 255, 0.42);
583
+ box-shadow: 0 0 0 2px rgba(0, 153, 255, 0.11);
584
+ }
585
+
586
+ #variant-13:focus-visible ~ .variant-drawer label[for="variant-13"],
587
+ #variant-14:focus-visible ~ .variant-drawer label[for="variant-14"],
588
+ #variant-15:focus-visible ~ .variant-drawer label[for="variant-15"],
589
+ #variant-16:focus-visible ~ .variant-drawer label[for="variant-16"],
590
+ #variant-17:focus-visible ~ .variant-drawer label[for="variant-17"],
591
+ #variant-18:focus-visible ~ .variant-drawer label[for="variant-18"],
592
+ #variant-19:focus-visible ~ .variant-drawer label[for="variant-19"],
593
+ #variant-20:focus-visible ~ .variant-drawer label[for="variant-20"] {
594
+ outline: 2px solid #0099ff;
595
+ outline-offset: 2px;
596
+ }
597
+
598
+ .alpha {
599
+ --active-alpha: 1;
600
+ --ghost-alpha: 0.33;
601
+ }
602
+
603
+ .v13 {
604
+ --top-fill: url("#top-13");
605
+ --side-fill: url("#side-13");
606
+ --label-fill: #2a1060;
607
+ --gpu-surface-fill: url("#gpu-surface-13");
608
+ --top-edge: #7c5fd0;
609
+ --side-edge: #2d1466;
610
+ --active-left: #b388ff;
611
+ --active-right: #0099ff;
612
+ --active-side: #758deb;
613
+ --active-corner: #8793f1;
614
+ --ghost-top: #aaa2dc;
615
+ --ghost-left: #907fcf;
616
+ --ghost-right: #5d8acc;
617
+ --ghost-side: #9aa9d6;
618
+ --ghost-corner: #929ed3;
619
+ }
620
+
621
+ .v14 {
622
+ --top-fill: url("#top-14");
623
+ --side-fill: url("#side-14");
624
+ --label-fill: #063f6a;
625
+ --gpu-surface-fill: url("#gpu-surface-14");
626
+ --top-edge: #237aa8;
627
+ --side-edge: #063f6a;
628
+ --active-left: #65cad8;
629
+ --active-right: #006ce0;
630
+ --active-side: #5da9d2;
631
+ --active-corner: #5eb6d4;
632
+ --ghost-top: #a2c5ca;
633
+ --ghost-left: #7bb2bd;
634
+ --ghost-right: #5e83bd;
635
+ --ghost-side: #94b7c5;
636
+ --ghost-corner: #8aafc1;
637
+ }
638
+
639
+ .v15 {
640
+ --top-fill: url("#top-15");
641
+ --side-fill: url("#side-15");
642
+ --label-fill: #f7fbff;
643
+ --gpu-surface-fill: url("#gpu-surface-15");
644
+ --top-edge: #7c5fd0;
645
+ --side-edge: #2d1466;
646
+ --active-left: #0099ff;
647
+ --active-right: #962eff;
648
+ --active-side: #7f6ff5;
649
+ --active-corner: #6f7ff0;
650
+ --ghost-top: #9ba9d6;
651
+ --ghost-left: #6f91d0;
652
+ --ghost-right: #8065ca;
653
+ --ghost-side: #94a5d7;
654
+ --ghost-corner: #8f9fd5;
655
+ }
656
+
657
+ .v16 {
658
+ --top-fill: url("#top-16");
659
+ --side-fill: url("#side-16");
660
+ --label-fill: #10246a;
661
+ --gpu-surface-fill: url("#gpu-surface-16");
662
+ --top-edge: #3e65c8;
663
+ --side-edge: #10246a;
664
+ --active-left: #75cfff;
665
+ --active-right: #2d49d8;
666
+ --active-side: #5d83df;
667
+ --active-corner: #5f9ee8;
668
+ --ghost-top: #a2bdd4;
669
+ --ghost-left: #7dafc8;
670
+ --ghost-right: #5e70c4;
671
+ --ghost-side: #9ab3ce;
672
+ --ghost-corner: #8fa7cc;
673
+ }
674
+
675
+ .v17 {
676
+ --top-fill: url("#top-17");
677
+ --side-fill: url("#side-17");
678
+ --label-fill: #17245e;
679
+ --gpu-surface-fill: url("#gpu-surface-17");
680
+ --top-edge: #5f6ed0;
681
+ --side-edge: #17245e;
682
+ --active-left: #7f91ff;
683
+ --active-right: #0099ff;
684
+ --active-side: #5f91ec;
685
+ --active-corner: #6491f3;
686
+ --ghost-top: #a0aad9;
687
+ --ghost-left: #7c8ad0;
688
+ --ghost-right: #618ece;
689
+ --ghost-side: #99a8d4;
690
+ --ghost-corner: #8fa3d3;
691
+ }
692
+
693
+ .v18 {
694
+ --top-fill: url("#top-18");
695
+ --side-fill: url("#side-18");
696
+ --label-fill: #064272;
697
+ --gpu-surface-fill: url("#gpu-surface-18");
698
+ --top-edge: #4f94c0;
699
+ --side-edge: #064272;
700
+ --active-left: #b8e7ff;
701
+ --active-right: #006ce0;
702
+ --active-side: #6aaee0;
703
+ --active-corner: #76bce8;
704
+ --ghost-top: #adc5d6;
705
+ --ghost-left: #92bad0;
706
+ --ghost-right: #6c91c2;
707
+ --ghost-side: #a3bed2;
708
+ --ghost-corner: #98b4cd;
709
+ }
710
+
711
+ .v19 {
712
+ --top-fill: url("#top-19");
713
+ --side-fill: url("#side-19");
714
+ --label-fill: #12306f;
715
+ --gpu-surface-fill: url("#gpu-surface-19");
716
+ --top-edge: #6470d8;
717
+ --side-edge: #12306f;
718
+ --active-left: #42b4ff;
719
+ --active-right: #8575ff;
720
+ --active-side: #6e8cf0;
721
+ --active-corner: #6a9ff4;
722
+ --ghost-top: #a0bfd3;
723
+ --ghost-left: #71a8cf;
724
+ --ghost-right: #7479cc;
725
+ --ghost-side: #9fb6d1;
726
+ --ghost-corner: #94a9ce;
727
+ }
728
+
729
+ .v20 {
730
+ --top-fill: url("#top-20");
731
+ --side-fill: url("#side-20");
732
+ --label-fill: #17245e;
733
+ --gpu-surface-fill: url("#gpu-surface-20");
734
+ --top-edge: #5a7bd0;
735
+ --side-edge: #17245e;
736
+ --active-left: #5c7fff;
737
+ --active-right: #b8e7ff;
738
+ --active-side: #70a4f2;
739
+ --active-corner: #6f95f0;
740
+ --ghost-top: #a0afd8;
741
+ --ghost-left: #718bd0;
742
+ --ghost-right: #74a7d2;
743
+ --ghost-side: #9aafd4;
744
+ --ghost-corner: #92a8d2;
745
+ }
746
+
747
+ #mode-wireframe:checked ~ .hero-card,
748
+ #mode-wireframe:checked ~ .variant-drawer .variant-card {
749
+ --ghost-alpha: 0.74;
750
+ --ghost-fill-opacity: 0;
751
+ --ghost-hidden-opacity: 0.3;
752
+ --ghost-hidden-stroke: var(--top-fill);
753
+ --ghost-hidden-stroke-width: 1.2;
754
+ --ghost-stroke-opacity: 1;
755
+ --ghost-side-fill: transparent;
756
+ --ghost-top-fill: transparent;
757
+ --ghost-side-stroke: var(--top-fill);
758
+ --ghost-top-stroke: var(--top-fill);
759
+ --ghost-stroke-width: 1.6;
760
+ }
761
+
762
+ #mode-wireframe:checked ~ .hero-card .hero-squircle:hover .interactive-layer .ghost {
763
+ opacity: 0.58;
764
+ }
765
+
766
+ #mode-wireframe:checked ~ .hero-card .hero-squircle:hover .interactive-layer .layer-label {
767
+ opacity: 0.58;
768
+ }
769
+
770
+ #mode-wireframe:checked ~ .hero-card .hero-squircle:hover .interactive-layer:hover .ghost {
771
+ opacity: 0;
772
+ }
773
+
774
+ #mode-wireframe:checked ~ .hero-card .hero-squircle:hover .interactive-layer:hover .layer-label {
775
+ opacity: 0.88;
776
+ }
777
+
778
+ #mode-wireframe:checked ~ .hero-card .plane-label,
779
+ #mode-wireframe:checked ~ .variant-drawer .variant-card .plane-label {
780
+ fill: none !important;
781
+ stroke: var(--top-fill);
782
+ stroke-width: var(--label-wire-width);
783
+ }
784
+
785
+ #mode-wireframe:checked ~ .hero-card .layer-inlay {
786
+ opacity: 0;
787
+ }
788
+
789
+ #mode-wireframe:checked ~ .hero-card .layer-middle .layer-inlay-wire {
790
+ opacity: 0.72;
791
+ }
792
+
793
+ #mode-wireframe:checked ~ .hero-card .hero-squircle:hover .interactive-layer:hover .layer-inlay-wire {
794
+ opacity: 0.78;
795
+ }
796
+
797
+ #mode-wireframe:checked ~ .hero-card .hero-squircle:hover .layer-middle:hover .layer-inlay {
798
+ opacity: 0;
799
+ }
800
+
801
+ #mode-wireframe:checked ~ .hero-card .hero-squircle:hover .layer-middle:hover .layer-inlay-wire {
802
+ opacity: 0.88;
803
+ }
804
+
805
+ #mode-wireframe:checked ~ .variant-drawer .variant-card .static-inlay {
806
+ opacity: 0;
807
+ }
808
+
809
+ #mode-wireframe:checked ~ .variant-drawer .variant-card .static-squircle .active {
810
+ opacity: 0;
811
+ }
812
+
813
+ #mode-wireframe:checked ~ .variant-drawer .variant-card .static-squircle .top-preview .ghost {
814
+ opacity: var(--ghost-alpha);
815
+ }
816
+
817
+ #mode-wireframe:checked ~ .variant-drawer .variant-card .wire-annotation {
818
+ opacity: 0.88;
819
+ }
820
+
821
+ #mode-wireframe:checked ~ #variant-13:checked ~ .variant-drawer label[for="variant-13"] .static-squircle .active,
822
+ #mode-wireframe:checked ~ #variant-14:checked ~ .variant-drawer label[for="variant-14"] .static-squircle .active,
823
+ #mode-wireframe:checked ~ #variant-15:checked ~ .variant-drawer label[for="variant-15"] .static-squircle .active,
824
+ #mode-wireframe:checked ~ #variant-16:checked ~ .variant-drawer label[for="variant-16"] .static-squircle .active,
825
+ #mode-wireframe:checked ~ #variant-17:checked ~ .variant-drawer label[for="variant-17"] .static-squircle .active,
826
+ #mode-wireframe:checked ~ #variant-18:checked ~ .variant-drawer label[for="variant-18"] .static-squircle .active,
827
+ #mode-wireframe:checked ~ #variant-19:checked ~ .variant-drawer label[for="variant-19"] .static-squircle .active,
828
+ #mode-wireframe:checked ~ #variant-20:checked ~ .variant-drawer label[for="variant-20"] .static-squircle .active {
829
+ opacity: var(--active-alpha);
830
+ }
831
+
832
+ #mode-wireframe:checked ~ #variant-13:checked ~ .variant-drawer label[for="variant-13"] .static-inlay,
833
+ #mode-wireframe:checked ~ #variant-14:checked ~ .variant-drawer label[for="variant-14"] .static-inlay,
834
+ #mode-wireframe:checked ~ #variant-15:checked ~ .variant-drawer label[for="variant-15"] .static-inlay,
835
+ #mode-wireframe:checked ~ #variant-16:checked ~ .variant-drawer label[for="variant-16"] .static-inlay,
836
+ #mode-wireframe:checked ~ #variant-17:checked ~ .variant-drawer label[for="variant-17"] .static-inlay,
837
+ #mode-wireframe:checked ~ #variant-18:checked ~ .variant-drawer label[for="variant-18"] .static-inlay,
838
+ #mode-wireframe:checked ~ #variant-19:checked ~ .variant-drawer label[for="variant-19"] .static-inlay,
839
+ #mode-wireframe:checked ~ #variant-20:checked ~ .variant-drawer label[for="variant-20"] .static-inlay {
840
+ opacity: 0.88;
841
+ stroke: var(--top-fill);
842
+ }
843
+
844
+ #mode-wireframe:checked ~ #variant-13:checked ~ .variant-drawer label[for="variant-13"] .static-squircle .top-preview .ghost,
845
+ #mode-wireframe:checked ~ #variant-14:checked ~ .variant-drawer label[for="variant-14"] .static-squircle .top-preview .ghost,
846
+ #mode-wireframe:checked ~ #variant-15:checked ~ .variant-drawer label[for="variant-15"] .static-squircle .top-preview .ghost,
847
+ #mode-wireframe:checked ~ #variant-16:checked ~ .variant-drawer label[for="variant-16"] .static-squircle .top-preview .ghost,
848
+ #mode-wireframe:checked ~ #variant-17:checked ~ .variant-drawer label[for="variant-17"] .static-squircle .top-preview .ghost,
849
+ #mode-wireframe:checked ~ #variant-18:checked ~ .variant-drawer label[for="variant-18"] .static-squircle .top-preview .ghost,
850
+ #mode-wireframe:checked ~ #variant-19:checked ~ .variant-drawer label[for="variant-19"] .static-squircle .top-preview .ghost,
851
+ #mode-wireframe:checked ~ #variant-20:checked ~ .variant-drawer label[for="variant-20"] .static-squircle .top-preview .ghost,
852
+ #mode-wireframe:checked ~ #variant-13:checked ~ .variant-drawer label[for="variant-13"] .wire-annotation,
853
+ #mode-wireframe:checked ~ #variant-14:checked ~ .variant-drawer label[for="variant-14"] .wire-annotation,
854
+ #mode-wireframe:checked ~ #variant-15:checked ~ .variant-drawer label[for="variant-15"] .wire-annotation,
855
+ #mode-wireframe:checked ~ #variant-16:checked ~ .variant-drawer label[for="variant-16"] .wire-annotation,
856
+ #mode-wireframe:checked ~ #variant-17:checked ~ .variant-drawer label[for="variant-17"] .wire-annotation,
857
+ #mode-wireframe:checked ~ #variant-18:checked ~ .variant-drawer label[for="variant-18"] .wire-annotation,
858
+ #mode-wireframe:checked ~ #variant-19:checked ~ .variant-drawer label[for="variant-19"] .wire-annotation,
859
+ #mode-wireframe:checked ~ #variant-20:checked ~ .variant-drawer label[for="variant-20"] .wire-annotation {
860
+ opacity: 0;
861
+ }
862
+
863
+ @media (max-width: 760px) {
864
+ .page-shell {
865
+ padding: 14px;
866
+ }
867
+
868
+ .mode-row {
869
+ justify-content: stretch;
870
+ }
871
+
872
+ .mode-switch {
873
+ width: 100%;
874
+ }
875
+
876
+ .hero-card {
877
+ grid-template-columns: 1fr;
878
+ }
879
+
880
+ .hero-copy {
881
+ order: -1;
882
+ }
883
+ }