opus-react 0.6.15 → 0.6.16
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.
- package/dist/index.cjs +6875 -373
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +851 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +20 -1
- package/dist/index.d.ts +20 -1
- package/dist/index.js +6880 -381
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -25368,6 +25368,209 @@ button.opus_H9TUGj_root:hover, button.opus_H9TUGj_root:focus-visible {
|
|
|
25368
25368
|
}
|
|
25369
25369
|
}
|
|
25370
25370
|
|
|
25371
|
+
/* components/Asteroids/Asteroids.module.css */
|
|
25372
|
+
.opus_kcnl9Q_game {
|
|
25373
|
+
color: #e2e8f0;
|
|
25374
|
+
border: 1px solid color-mix(in srgb,var(--opus-color-accent, #3b82f6) 40%,#334155);
|
|
25375
|
+
user-select: none;
|
|
25376
|
+
background: #020617;
|
|
25377
|
+
border-radius: 18px;
|
|
25378
|
+
width: 100%;
|
|
25379
|
+
max-width: 980px;
|
|
25380
|
+
margin: auto;
|
|
25381
|
+
overflow: hidden;
|
|
25382
|
+
box-shadow: 0 22px 70px #02061773;
|
|
25383
|
+
}
|
|
25384
|
+
|
|
25385
|
+
.opus_kcnl9Q_hud {
|
|
25386
|
+
text-transform: uppercase;
|
|
25387
|
+
letter-spacing: .12em;
|
|
25388
|
+
color: #94a3b8;
|
|
25389
|
+
background: #060b1a;
|
|
25390
|
+
border-bottom: 1px solid #1e293b;
|
|
25391
|
+
justify-content: space-between;
|
|
25392
|
+
align-items: center;
|
|
25393
|
+
gap: 12px;
|
|
25394
|
+
height: 48px;
|
|
25395
|
+
padding: 0 16px;
|
|
25396
|
+
font: 600 12px / 1 ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
25397
|
+
display: flex;
|
|
25398
|
+
}
|
|
25399
|
+
|
|
25400
|
+
.opus_kcnl9Q_hudStats {
|
|
25401
|
+
flex: 1;
|
|
25402
|
+
justify-content: center;
|
|
25403
|
+
align-items: center;
|
|
25404
|
+
gap: clamp(20px, 7vw, 72px);
|
|
25405
|
+
display: flex;
|
|
25406
|
+
}
|
|
25407
|
+
|
|
25408
|
+
.opus_kcnl9Q_hud strong {
|
|
25409
|
+
color: #f8fafc;
|
|
25410
|
+
font-size: 14px;
|
|
25411
|
+
}
|
|
25412
|
+
|
|
25413
|
+
.opus_kcnl9Q_hudButton {
|
|
25414
|
+
color: #f8fafc;
|
|
25415
|
+
text-transform: uppercase;
|
|
25416
|
+
letter-spacing: .08em;
|
|
25417
|
+
cursor: pointer;
|
|
25418
|
+
background: #0f172a;
|
|
25419
|
+
border: 1px solid #64748b;
|
|
25420
|
+
border-radius: 8px;
|
|
25421
|
+
flex-shrink: 0;
|
|
25422
|
+
padding: 7px 11px;
|
|
25423
|
+
font: 700 10px / 1 ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
25424
|
+
}
|
|
25425
|
+
|
|
25426
|
+
.opus_kcnl9Q_hudButton:hover {
|
|
25427
|
+
background: #1e293b;
|
|
25428
|
+
border-color: #f8fafc;
|
|
25429
|
+
}
|
|
25430
|
+
|
|
25431
|
+
.opus_kcnl9Q_stage {
|
|
25432
|
+
touch-action: none;
|
|
25433
|
+
height: clamp(420px, 62vh, 680px);
|
|
25434
|
+
position: relative;
|
|
25435
|
+
}
|
|
25436
|
+
|
|
25437
|
+
.opus_kcnl9Q_canvas {
|
|
25438
|
+
background: #020617;
|
|
25439
|
+
width: 100%;
|
|
25440
|
+
height: 100%;
|
|
25441
|
+
display: block;
|
|
25442
|
+
}
|
|
25443
|
+
|
|
25444
|
+
.opus_kcnl9Q_overlay {
|
|
25445
|
+
text-align: center;
|
|
25446
|
+
backdrop-filter: blur(2px);
|
|
25447
|
+
background: #02061794;
|
|
25448
|
+
place-content: center;
|
|
25449
|
+
justify-items: center;
|
|
25450
|
+
display: grid;
|
|
25451
|
+
position: absolute;
|
|
25452
|
+
inset: 0;
|
|
25453
|
+
}
|
|
25454
|
+
|
|
25455
|
+
.opus_kcnl9Q_overlay h2 {
|
|
25456
|
+
text-transform: uppercase;
|
|
25457
|
+
letter-spacing: .12em;
|
|
25458
|
+
margin: 0;
|
|
25459
|
+
font: 700 clamp(32px, 7vw, 72px) / 1 ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
25460
|
+
}
|
|
25461
|
+
|
|
25462
|
+
.opus_kcnl9Q_overlay p {
|
|
25463
|
+
color: #94a3b8;
|
|
25464
|
+
}
|
|
25465
|
+
|
|
25466
|
+
.opus_kcnl9Q_overlay button, .opus_kcnl9Q_controls button {
|
|
25467
|
+
color: #f8fafc;
|
|
25468
|
+
text-transform: uppercase;
|
|
25469
|
+
cursor: pointer;
|
|
25470
|
+
background: #0f172a;
|
|
25471
|
+
border: 1px solid #64748b;
|
|
25472
|
+
border-radius: 10px;
|
|
25473
|
+
font: 700 14px / 1 ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
25474
|
+
}
|
|
25475
|
+
|
|
25476
|
+
.opus_kcnl9Q_overlay button {
|
|
25477
|
+
padding: 13px 20px;
|
|
25478
|
+
}
|
|
25479
|
+
|
|
25480
|
+
.opus_kcnl9Q_overlay button:hover, .opus_kcnl9Q_controls button:hover {
|
|
25481
|
+
background: #1e293b;
|
|
25482
|
+
border-color: #f8fafc;
|
|
25483
|
+
}
|
|
25484
|
+
|
|
25485
|
+
.opus_kcnl9Q_controls {
|
|
25486
|
+
border-top: 1px solid #1e293b;
|
|
25487
|
+
grid-template-columns: repeat(3, 56px) 80px;
|
|
25488
|
+
justify-content: center;
|
|
25489
|
+
gap: 10px;
|
|
25490
|
+
padding: 14px;
|
|
25491
|
+
display: none;
|
|
25492
|
+
}
|
|
25493
|
+
|
|
25494
|
+
.opus_kcnl9Q_controls button {
|
|
25495
|
+
touch-action: none;
|
|
25496
|
+
height: 52px;
|
|
25497
|
+
font-size: 20px;
|
|
25498
|
+
}
|
|
25499
|
+
|
|
25500
|
+
.opus_kcnl9Q_controls .opus_kcnl9Q_fire {
|
|
25501
|
+
color: #fca5a5;
|
|
25502
|
+
border-color: #ef4444;
|
|
25503
|
+
margin-left: 14px;
|
|
25504
|
+
font-size: 13px;
|
|
25505
|
+
}
|
|
25506
|
+
|
|
25507
|
+
.opus_kcnl9Q_help {
|
|
25508
|
+
text-align: center;
|
|
25509
|
+
color: #64748b;
|
|
25510
|
+
margin: 0;
|
|
25511
|
+
padding: 10px 16px 14px;
|
|
25512
|
+
font: 12px / 1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
25513
|
+
}
|
|
25514
|
+
|
|
25515
|
+
.opus_kcnl9Q_game[data-fullscreen="true"] {
|
|
25516
|
+
z-index: 10000;
|
|
25517
|
+
width: 100vw;
|
|
25518
|
+
max-width: none;
|
|
25519
|
+
height: 100vh;
|
|
25520
|
+
box-shadow: none;
|
|
25521
|
+
border: 0;
|
|
25522
|
+
border-radius: 0;
|
|
25523
|
+
flex-direction: column;
|
|
25524
|
+
margin: 0;
|
|
25525
|
+
display: flex;
|
|
25526
|
+
position: fixed;
|
|
25527
|
+
inset: 0;
|
|
25528
|
+
}
|
|
25529
|
+
|
|
25530
|
+
.opus_kcnl9Q_game[data-fullscreen="true"] .opus_kcnl9Q_stage {
|
|
25531
|
+
flex: 1;
|
|
25532
|
+
height: auto;
|
|
25533
|
+
min-height: 0;
|
|
25534
|
+
}
|
|
25535
|
+
|
|
25536
|
+
.opus_kcnl9Q_game[data-fullscreen="true"] .opus_kcnl9Q_help {
|
|
25537
|
+
display: none;
|
|
25538
|
+
}
|
|
25539
|
+
|
|
25540
|
+
@media (pointer: coarse), (width <= 700px) {
|
|
25541
|
+
.opus_kcnl9Q_controls {
|
|
25542
|
+
display: grid;
|
|
25543
|
+
}
|
|
25544
|
+
|
|
25545
|
+
.opus_kcnl9Q_stage {
|
|
25546
|
+
height: clamp(360px, 52vh, 520px);
|
|
25547
|
+
}
|
|
25548
|
+
|
|
25549
|
+
.opus_kcnl9Q_help {
|
|
25550
|
+
display: none;
|
|
25551
|
+
}
|
|
25552
|
+
}
|
|
25553
|
+
|
|
25554
|
+
@media (width <= 480px) {
|
|
25555
|
+
.opus_kcnl9Q_hudStats {
|
|
25556
|
+
gap: 18px;
|
|
25557
|
+
font-size: 10px;
|
|
25558
|
+
}
|
|
25559
|
+
|
|
25560
|
+
.opus_kcnl9Q_controls {
|
|
25561
|
+
grid-template-columns: repeat(3, 50px) 68px;
|
|
25562
|
+
}
|
|
25563
|
+
|
|
25564
|
+
.opus_kcnl9Q_controls button {
|
|
25565
|
+
height: 48px;
|
|
25566
|
+
}
|
|
25567
|
+
|
|
25568
|
+
.opus_kcnl9Q_hudButton {
|
|
25569
|
+
padding: 6px 8px;
|
|
25570
|
+
font-size: 9px;
|
|
25571
|
+
}
|
|
25572
|
+
}
|
|
25573
|
+
|
|
25371
25574
|
/* components/DesktopIcon/DesktopIcon.module.css */
|
|
25372
25575
|
.opus_Aw_c1o_root {
|
|
25373
25576
|
--desktop-icon-accent: var(--opus-accent);
|
|
@@ -26352,6 +26555,654 @@ button.opus_H9TUGj_root:hover, button.opus_H9TUGj_root:focus-visible {
|
|
|
26352
26555
|
border-radius: 0;
|
|
26353
26556
|
}
|
|
26354
26557
|
|
|
26558
|
+
/* components/JetSetWilly/JetSetWilly.module.css */
|
|
26559
|
+
.opus_1aWUVr_component {
|
|
26560
|
+
color: #f8fafc;
|
|
26561
|
+
background: #080808;
|
|
26562
|
+
border: 1px solid #3f3f46;
|
|
26563
|
+
border-radius: 18px;
|
|
26564
|
+
width: 100%;
|
|
26565
|
+
max-width: 900px;
|
|
26566
|
+
margin: auto;
|
|
26567
|
+
overflow: hidden;
|
|
26568
|
+
box-shadow: 0 25px 80px #00000080;
|
|
26569
|
+
}
|
|
26570
|
+
|
|
26571
|
+
.opus_1aWUVr_header {
|
|
26572
|
+
background: linear-gradient(90deg, #18181b, #09090b);
|
|
26573
|
+
border-bottom: 1px solid #3f3f46;
|
|
26574
|
+
justify-content: space-between;
|
|
26575
|
+
align-items: center;
|
|
26576
|
+
gap: 20px;
|
|
26577
|
+
padding: 16px 20px;
|
|
26578
|
+
display: flex;
|
|
26579
|
+
}
|
|
26580
|
+
|
|
26581
|
+
.opus_1aWUVr_header h2 {
|
|
26582
|
+
margin: 3px 0 0;
|
|
26583
|
+
font: 700 22px / 1.1 ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
26584
|
+
}
|
|
26585
|
+
|
|
26586
|
+
.opus_1aWUVr_kicker {
|
|
26587
|
+
color: #facc15;
|
|
26588
|
+
letter-spacing: .17em;
|
|
26589
|
+
text-transform: uppercase;
|
|
26590
|
+
font: 700 10px / 1 ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
26591
|
+
}
|
|
26592
|
+
|
|
26593
|
+
.opus_1aWUVr_actions {
|
|
26594
|
+
gap: 8px;
|
|
26595
|
+
display: flex;
|
|
26596
|
+
}
|
|
26597
|
+
|
|
26598
|
+
.opus_1aWUVr_header button {
|
|
26599
|
+
color: #fafafa;
|
|
26600
|
+
cursor: pointer;
|
|
26601
|
+
background: #27272a;
|
|
26602
|
+
border: 1px solid #71717a;
|
|
26603
|
+
border-radius: 8px;
|
|
26604
|
+
padding: 9px 13px;
|
|
26605
|
+
}
|
|
26606
|
+
|
|
26607
|
+
.opus_1aWUVr_screenShell {
|
|
26608
|
+
background: radial-gradient(circle, #20202a, #030303 70%);
|
|
26609
|
+
place-items: center;
|
|
26610
|
+
min-height: 480px;
|
|
26611
|
+
padding: 24px;
|
|
26612
|
+
display: grid;
|
|
26613
|
+
position: relative;
|
|
26614
|
+
}
|
|
26615
|
+
|
|
26616
|
+
.opus_1aWUVr_canvas {
|
|
26617
|
+
width: 512px;
|
|
26618
|
+
max-width: 100%;
|
|
26619
|
+
height: auto;
|
|
26620
|
+
image-rendering: pixelated;
|
|
26621
|
+
outline: 0;
|
|
26622
|
+
display: block;
|
|
26623
|
+
box-shadow: 0 0 0 2px #111, 0 0 32px #000c;
|
|
26624
|
+
}
|
|
26625
|
+
|
|
26626
|
+
.opus_1aWUVr_canvas:focus {
|
|
26627
|
+
box-shadow: 0 0 0 2px #facc15, 0 0 32px #facc152e;
|
|
26628
|
+
}
|
|
26629
|
+
|
|
26630
|
+
.opus_1aWUVr_focusHint {
|
|
26631
|
+
color: #71717a;
|
|
26632
|
+
font: 10px / 1 ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
26633
|
+
position: absolute;
|
|
26634
|
+
bottom: 8px;
|
|
26635
|
+
}
|
|
26636
|
+
|
|
26637
|
+
.opus_1aWUVr_instructions {
|
|
26638
|
+
color: #a1a1aa;
|
|
26639
|
+
border-top: 1px solid #27272a;
|
|
26640
|
+
flex-wrap: wrap;
|
|
26641
|
+
justify-content: center;
|
|
26642
|
+
gap: 10px 22px;
|
|
26643
|
+
padding: 13px 18px;
|
|
26644
|
+
font: 12px / 1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
26645
|
+
display: flex;
|
|
26646
|
+
}
|
|
26647
|
+
|
|
26648
|
+
.opus_1aWUVr_instructions strong {
|
|
26649
|
+
color: #f8fafc;
|
|
26650
|
+
}
|
|
26651
|
+
|
|
26652
|
+
.opus_1aWUVr_notice {
|
|
26653
|
+
text-align: center;
|
|
26654
|
+
color: #52525b;
|
|
26655
|
+
margin: 0;
|
|
26656
|
+
padding: 0 18px 14px;
|
|
26657
|
+
font-size: 11px;
|
|
26658
|
+
}
|
|
26659
|
+
|
|
26660
|
+
.opus_1aWUVr_component:fullscreen {
|
|
26661
|
+
background: #000;
|
|
26662
|
+
border: 0;
|
|
26663
|
+
border-radius: 0;
|
|
26664
|
+
flex-direction: column;
|
|
26665
|
+
width: 100vw;
|
|
26666
|
+
max-width: none;
|
|
26667
|
+
height: 100vh;
|
|
26668
|
+
margin: 0;
|
|
26669
|
+
display: flex;
|
|
26670
|
+
}
|
|
26671
|
+
|
|
26672
|
+
.opus_1aWUVr_component:fullscreen .opus_1aWUVr_screenShell {
|
|
26673
|
+
flex: 1;
|
|
26674
|
+
min-height: 0;
|
|
26675
|
+
padding: 0;
|
|
26676
|
+
}
|
|
26677
|
+
|
|
26678
|
+
.opus_1aWUVr_component:fullscreen .opus_1aWUVr_canvas {
|
|
26679
|
+
aspect-ratio: 4 / 3;
|
|
26680
|
+
width: min(100vw, 133.333vh - 189.333px);
|
|
26681
|
+
max-width: none;
|
|
26682
|
+
height: auto;
|
|
26683
|
+
max-height: none;
|
|
26684
|
+
}
|
|
26685
|
+
|
|
26686
|
+
.opus_1aWUVr_component:fullscreen .opus_1aWUVr_focusHint, .opus_1aWUVr_component:fullscreen .opus_1aWUVr_notice {
|
|
26687
|
+
display: none;
|
|
26688
|
+
}
|
|
26689
|
+
|
|
26690
|
+
@media (width <= 600px) {
|
|
26691
|
+
.opus_1aWUVr_screenShell {
|
|
26692
|
+
min-height: 300px;
|
|
26693
|
+
padding: 10px;
|
|
26694
|
+
}
|
|
26695
|
+
|
|
26696
|
+
.opus_1aWUVr_header {
|
|
26697
|
+
align-items: flex-start;
|
|
26698
|
+
padding: 12px;
|
|
26699
|
+
}
|
|
26700
|
+
|
|
26701
|
+
.opus_1aWUVr_header h2 {
|
|
26702
|
+
font-size: 18px;
|
|
26703
|
+
}
|
|
26704
|
+
|
|
26705
|
+
.opus_1aWUVr_actions {
|
|
26706
|
+
flex-direction: column;
|
|
26707
|
+
}
|
|
26708
|
+
|
|
26709
|
+
.opus_1aWUVr_instructions {
|
|
26710
|
+
gap: 8px 14px;
|
|
26711
|
+
}
|
|
26712
|
+
}
|
|
26713
|
+
|
|
26714
|
+
/* components/PacMan/Joystick.module.css */
|
|
26715
|
+
.opus_5bVNqU_joystickContainer {
|
|
26716
|
+
touch-action: none;
|
|
26717
|
+
user-select: none;
|
|
26718
|
+
pointer-events: none;
|
|
26719
|
+
z-index: 1000;
|
|
26720
|
+
justify-content: center;
|
|
26721
|
+
align-items: center;
|
|
26722
|
+
width: 160px;
|
|
26723
|
+
height: 160px;
|
|
26724
|
+
display: flex;
|
|
26725
|
+
position: fixed;
|
|
26726
|
+
}
|
|
26727
|
+
|
|
26728
|
+
.opus_5bVNqU_joystickBase {
|
|
26729
|
+
justify-content: center;
|
|
26730
|
+
align-items: center;
|
|
26731
|
+
width: 100%;
|
|
26732
|
+
height: 100%;
|
|
26733
|
+
display: flex;
|
|
26734
|
+
position: relative;
|
|
26735
|
+
}
|
|
26736
|
+
|
|
26737
|
+
.opus_5bVNqU_joystickRing {
|
|
26738
|
+
backdrop-filter: blur(4px);
|
|
26739
|
+
background: #0003;
|
|
26740
|
+
border: 2px dashed #ffffff80;
|
|
26741
|
+
border-radius: 50%;
|
|
26742
|
+
width: 100%;
|
|
26743
|
+
height: 100%;
|
|
26744
|
+
position: absolute;
|
|
26745
|
+
}
|
|
26746
|
+
|
|
26747
|
+
body:not(.dark-mode) .opus_5bVNqU_joystickRing {
|
|
26748
|
+
background: #ffffff4d;
|
|
26749
|
+
border-color: #1e3a8a99;
|
|
26750
|
+
}
|
|
26751
|
+
|
|
26752
|
+
.opus_5bVNqU_joystickArc {
|
|
26753
|
+
clip-path: polygon(25% 0, 75% 0, 75% 50%, 25% 50%);
|
|
26754
|
+
background: none;
|
|
26755
|
+
border: none;
|
|
26756
|
+
border-radius: 50%;
|
|
26757
|
+
width: 140px;
|
|
26758
|
+
height: 140px;
|
|
26759
|
+
position: absolute;
|
|
26760
|
+
}
|
|
26761
|
+
|
|
26762
|
+
body:not(.dark-mode) .opus_5bVNqU_joystickArc {
|
|
26763
|
+
border-color: #1e3a8a80;
|
|
26764
|
+
}
|
|
26765
|
+
|
|
26766
|
+
.opus_5bVNqU_joystickArc:nth-child(3) {
|
|
26767
|
+
clip-path: polygon(25% 0, 75% 0, 75% 50%, 25% 50%);
|
|
26768
|
+
transform: rotate(180deg);
|
|
26769
|
+
}
|
|
26770
|
+
|
|
26771
|
+
.opus_5bVNqU_joystickKnob {
|
|
26772
|
+
pointer-events: none;
|
|
26773
|
+
z-index: 10;
|
|
26774
|
+
background: radial-gradient(circle at 30% 30%, #f0f0f0, #b4b4b4);
|
|
26775
|
+
border: 2px solid #ffffff4d;
|
|
26776
|
+
border-radius: 50%;
|
|
26777
|
+
justify-content: center;
|
|
26778
|
+
align-items: center;
|
|
26779
|
+
width: 56px;
|
|
26780
|
+
height: 56px;
|
|
26781
|
+
margin-top: -28px;
|
|
26782
|
+
margin-left: -28px;
|
|
26783
|
+
display: flex;
|
|
26784
|
+
position: absolute;
|
|
26785
|
+
top: 50%;
|
|
26786
|
+
left: 50%;
|
|
26787
|
+
box-shadow: 0 4px 12px #0006, inset 0 2px 4px #fff9, inset 0 -2px 4px #0003;
|
|
26788
|
+
}
|
|
26789
|
+
|
|
26790
|
+
.opus_5bVNqU_knobInner {
|
|
26791
|
+
background: radial-gradient(circle at 35% 35%, #dcdcdce6, #a0a0a0b3);
|
|
26792
|
+
border: 1px solid #fff3;
|
|
26793
|
+
border-radius: 50%;
|
|
26794
|
+
width: 32px;
|
|
26795
|
+
height: 32px;
|
|
26796
|
+
box-shadow: inset 0 2px 4px #ffffff80, inset 0 -1px 2px #0000004d;
|
|
26797
|
+
}
|
|
26798
|
+
|
|
26799
|
+
.opus_5bVNqU_knobHighlight {
|
|
26800
|
+
pointer-events: none;
|
|
26801
|
+
background: radial-gradient(circle at 30% 30%, #fffc, #fff0);
|
|
26802
|
+
border-radius: 50%;
|
|
26803
|
+
width: 16px;
|
|
26804
|
+
height: 16px;
|
|
26805
|
+
position: absolute;
|
|
26806
|
+
top: 20%;
|
|
26807
|
+
left: 25%;
|
|
26808
|
+
}
|
|
26809
|
+
|
|
26810
|
+
@media (width <= 520px) {
|
|
26811
|
+
.opus_5bVNqU_joystickContainer {
|
|
26812
|
+
width: 140px;
|
|
26813
|
+
height: 140px;
|
|
26814
|
+
}
|
|
26815
|
+
|
|
26816
|
+
.opus_5bVNqU_joystickArc {
|
|
26817
|
+
width: 120px;
|
|
26818
|
+
height: 120px;
|
|
26819
|
+
}
|
|
26820
|
+
|
|
26821
|
+
.opus_5bVNqU_joystickRing {
|
|
26822
|
+
border-width: 1.5px;
|
|
26823
|
+
}
|
|
26824
|
+
|
|
26825
|
+
.opus_5bVNqU_joystickKnob {
|
|
26826
|
+
width: 52px;
|
|
26827
|
+
height: 52px;
|
|
26828
|
+
margin-top: -26px;
|
|
26829
|
+
margin-left: -26px;
|
|
26830
|
+
}
|
|
26831
|
+
|
|
26832
|
+
.opus_5bVNqU_knobInner {
|
|
26833
|
+
width: 30px;
|
|
26834
|
+
height: 30px;
|
|
26835
|
+
}
|
|
26836
|
+
|
|
26837
|
+
.opus_5bVNqU_knobHighlight {
|
|
26838
|
+
width: 14px;
|
|
26839
|
+
height: 14px;
|
|
26840
|
+
}
|
|
26841
|
+
}
|
|
26842
|
+
|
|
26843
|
+
/* components/PacMan/PacMan.module.css */
|
|
26844
|
+
.opus_KL4dkl_container {
|
|
26845
|
+
color: #f8fafc;
|
|
26846
|
+
-webkit-user-select: none;
|
|
26847
|
+
-moz-user-select: none;
|
|
26848
|
+
-ms-user-select: none;
|
|
26849
|
+
user-select: none;
|
|
26850
|
+
-webkit-touch-callout: none;
|
|
26851
|
+
background: none;
|
|
26852
|
+
flex-direction: column;
|
|
26853
|
+
gap: 0;
|
|
26854
|
+
width: 100%;
|
|
26855
|
+
height: auto;
|
|
26856
|
+
padding: 0;
|
|
26857
|
+
display: flex;
|
|
26858
|
+
}
|
|
26859
|
+
|
|
26860
|
+
body:not(.dark-mode) .opus_KL4dkl_container {
|
|
26861
|
+
color: #e8e1d6;
|
|
26862
|
+
background: none;
|
|
26863
|
+
}
|
|
26864
|
+
|
|
26865
|
+
.opus_KL4dkl_container * {
|
|
26866
|
+
-webkit-user-select: none;
|
|
26867
|
+
-moz-user-select: none;
|
|
26868
|
+
-ms-user-select: none;
|
|
26869
|
+
user-select: none;
|
|
26870
|
+
-webkit-touch-callout: none;
|
|
26871
|
+
}
|
|
26872
|
+
|
|
26873
|
+
.opus_KL4dkl_header {
|
|
26874
|
+
text-align: center;
|
|
26875
|
+
z-index: 1001;
|
|
26876
|
+
flex-direction: column;
|
|
26877
|
+
align-items: center;
|
|
26878
|
+
gap: 16px;
|
|
26879
|
+
display: flex;
|
|
26880
|
+
position: relative;
|
|
26881
|
+
}
|
|
26882
|
+
|
|
26883
|
+
.opus_KL4dkl_headerContent {
|
|
26884
|
+
flex-direction: column;
|
|
26885
|
+
gap: 4px;
|
|
26886
|
+
display: flex;
|
|
26887
|
+
}
|
|
26888
|
+
|
|
26889
|
+
.opus_KL4dkl_title {
|
|
26890
|
+
letter-spacing: -.02em;
|
|
26891
|
+
color: inherit;
|
|
26892
|
+
margin: 0;
|
|
26893
|
+
font-size: 1.5rem;
|
|
26894
|
+
font-weight: 700;
|
|
26895
|
+
display: none;
|
|
26896
|
+
}
|
|
26897
|
+
|
|
26898
|
+
body:not(.dark-mode) .opus_KL4dkl_title {
|
|
26899
|
+
color: #1e3a8a;
|
|
26900
|
+
}
|
|
26901
|
+
|
|
26902
|
+
.opus_KL4dkl_subtitle {
|
|
26903
|
+
color: #94a3b8;
|
|
26904
|
+
margin: 0;
|
|
26905
|
+
font-size: .875rem;
|
|
26906
|
+
font-weight: 400;
|
|
26907
|
+
display: none;
|
|
26908
|
+
}
|
|
26909
|
+
|
|
26910
|
+
body:not(.dark-mode) .opus_KL4dkl_subtitle {
|
|
26911
|
+
color: #64748b;
|
|
26912
|
+
}
|
|
26913
|
+
|
|
26914
|
+
.opus_KL4dkl_buttonContainer {
|
|
26915
|
+
z-index: 1001;
|
|
26916
|
+
justify-content: center;
|
|
26917
|
+
align-items: center;
|
|
26918
|
+
gap: 10px;
|
|
26919
|
+
margin: 0;
|
|
26920
|
+
padding: 0;
|
|
26921
|
+
display: flex;
|
|
26922
|
+
position: relative;
|
|
26923
|
+
}
|
|
26924
|
+
|
|
26925
|
+
.opus_KL4dkl_startGameButton {
|
|
26926
|
+
color: #fff;
|
|
26927
|
+
cursor: pointer;
|
|
26928
|
+
letter-spacing: .02em;
|
|
26929
|
+
z-index: 1002;
|
|
26930
|
+
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
|
|
26931
|
+
border: none;
|
|
26932
|
+
border-radius: 8px;
|
|
26933
|
+
min-width: 120px;
|
|
26934
|
+
padding: 10px 24px;
|
|
26935
|
+
font-size: .875rem;
|
|
26936
|
+
font-weight: 600;
|
|
26937
|
+
transition: all .2s;
|
|
26938
|
+
position: relative;
|
|
26939
|
+
box-shadow: 0 2px 8px #10b9814d;
|
|
26940
|
+
}
|
|
26941
|
+
|
|
26942
|
+
.opus_KL4dkl_startGameButton:hover {
|
|
26943
|
+
background: linear-gradient(135deg, #059669 0%, #047857 100%);
|
|
26944
|
+
transform: translateY(-1px);
|
|
26945
|
+
box-shadow: 0 4px 12px #10b98180;
|
|
26946
|
+
}
|
|
26947
|
+
|
|
26948
|
+
.opus_KL4dkl_startGameButton:active {
|
|
26949
|
+
transform: translateY(0);
|
|
26950
|
+
box-shadow: 0 2px 6px #10b98166;
|
|
26951
|
+
}
|
|
26952
|
+
|
|
26953
|
+
.opus_KL4dkl_newGameButton {
|
|
26954
|
+
color: #fff;
|
|
26955
|
+
cursor: pointer;
|
|
26956
|
+
letter-spacing: .02em;
|
|
26957
|
+
z-index: 1002;
|
|
26958
|
+
background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
|
|
26959
|
+
border: none;
|
|
26960
|
+
border-radius: 8px;
|
|
26961
|
+
min-width: 120px;
|
|
26962
|
+
padding: 10px 24px;
|
|
26963
|
+
font-size: .875rem;
|
|
26964
|
+
font-weight: 600;
|
|
26965
|
+
transition: all .2s;
|
|
26966
|
+
position: relative;
|
|
26967
|
+
box-shadow: 0 2px 8px #3b82f64d;
|
|
26968
|
+
}
|
|
26969
|
+
|
|
26970
|
+
.opus_KL4dkl_newGameButton:hover {
|
|
26971
|
+
background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
|
|
26972
|
+
transform: translateY(-1px);
|
|
26973
|
+
box-shadow: 0 4px 12px #3b82f680;
|
|
26974
|
+
}
|
|
26975
|
+
|
|
26976
|
+
.opus_KL4dkl_newGameButton:active {
|
|
26977
|
+
transform: translateY(0);
|
|
26978
|
+
box-shadow: 0 2px 6px #3b82f666;
|
|
26979
|
+
}
|
|
26980
|
+
|
|
26981
|
+
.opus_KL4dkl_fullscreenButton {
|
|
26982
|
+
color: #f8fafc;
|
|
26983
|
+
cursor: pointer;
|
|
26984
|
+
letter-spacing: .02em;
|
|
26985
|
+
z-index: 1002;
|
|
26986
|
+
background: #0f172ad9;
|
|
26987
|
+
border: 1px solid #94a3b873;
|
|
26988
|
+
border-radius: 8px;
|
|
26989
|
+
min-width: 120px;
|
|
26990
|
+
padding: 10px 16px;
|
|
26991
|
+
font-size: .875rem;
|
|
26992
|
+
font-weight: 600;
|
|
26993
|
+
transition: all .2s;
|
|
26994
|
+
position: relative;
|
|
26995
|
+
}
|
|
26996
|
+
|
|
26997
|
+
.opus_KL4dkl_fullscreenButton:hover {
|
|
26998
|
+
background: #1e293bf2;
|
|
26999
|
+
border-color: #f8fafcbf;
|
|
27000
|
+
}
|
|
27001
|
+
|
|
27002
|
+
.opus_KL4dkl_closeButton {
|
|
27003
|
+
color: #f1f5f9;
|
|
27004
|
+
cursor: pointer;
|
|
27005
|
+
background: #0f172ab3;
|
|
27006
|
+
border: 1px solid #94a3b866;
|
|
27007
|
+
border-radius: 999px;
|
|
27008
|
+
padding: 8px 14px;
|
|
27009
|
+
font-weight: 600;
|
|
27010
|
+
}
|
|
27011
|
+
|
|
27012
|
+
.opus_KL4dkl_closeButton:hover {
|
|
27013
|
+
background: #1e293be6;
|
|
27014
|
+
}
|
|
27015
|
+
|
|
27016
|
+
.opus_KL4dkl_statsRow {
|
|
27017
|
+
grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
|
|
27018
|
+
gap: 12px;
|
|
27019
|
+
display: grid;
|
|
27020
|
+
}
|
|
27021
|
+
|
|
27022
|
+
.opus_KL4dkl_statBox {
|
|
27023
|
+
background: #0f172ab3;
|
|
27024
|
+
border: 1px solid #3b82f64d;
|
|
27025
|
+
border-radius: 12px;
|
|
27026
|
+
flex-direction: column;
|
|
27027
|
+
gap: 4px;
|
|
27028
|
+
padding: 10px 12px;
|
|
27029
|
+
display: flex;
|
|
27030
|
+
}
|
|
27031
|
+
|
|
27032
|
+
.opus_KL4dkl_statLabel {
|
|
27033
|
+
text-transform: uppercase;
|
|
27034
|
+
letter-spacing: .05em;
|
|
27035
|
+
color: #94a3b8;
|
|
27036
|
+
font-size: .75rem;
|
|
27037
|
+
}
|
|
27038
|
+
|
|
27039
|
+
.opus_KL4dkl_statValue {
|
|
27040
|
+
overflow-wrap: anywhere;
|
|
27041
|
+
word-break: break-word;
|
|
27042
|
+
white-space: normal;
|
|
27043
|
+
font-size: clamp(.95rem, 3.2vw, 1.1rem);
|
|
27044
|
+
font-weight: 700;
|
|
27045
|
+
}
|
|
27046
|
+
|
|
27047
|
+
.opus_KL4dkl_actions {
|
|
27048
|
+
flex-wrap: wrap;
|
|
27049
|
+
gap: 12px;
|
|
27050
|
+
display: flex;
|
|
27051
|
+
}
|
|
27052
|
+
|
|
27053
|
+
.opus_KL4dkl_actionButton {
|
|
27054
|
+
color: #fff;
|
|
27055
|
+
cursor: pointer;
|
|
27056
|
+
background: linear-gradient(120deg, #3b82f6, #06b6d4);
|
|
27057
|
+
border: none;
|
|
27058
|
+
border-radius: 999px;
|
|
27059
|
+
padding: 10px 18px;
|
|
27060
|
+
font-weight: 600;
|
|
27061
|
+
}
|
|
27062
|
+
|
|
27063
|
+
.opus_KL4dkl_actionButton[aria-pressed="true"] {
|
|
27064
|
+
background: #0f172ae6;
|
|
27065
|
+
border: 1px solid #3b82f6;
|
|
27066
|
+
}
|
|
27067
|
+
|
|
27068
|
+
.opus_KL4dkl_canvasWrapper {
|
|
27069
|
+
contain: layout style paint;
|
|
27070
|
+
will-change: contents;
|
|
27071
|
+
background: none;
|
|
27072
|
+
justify-content: center;
|
|
27073
|
+
align-items: center;
|
|
27074
|
+
width: 100%;
|
|
27075
|
+
height: calc(100vh - 330px);
|
|
27076
|
+
margin: 0;
|
|
27077
|
+
padding: 0;
|
|
27078
|
+
display: flex;
|
|
27079
|
+
overflow: hidden;
|
|
27080
|
+
}
|
|
27081
|
+
|
|
27082
|
+
.opus_KL4dkl_canvas {
|
|
27083
|
+
contain: layout style paint;
|
|
27084
|
+
opacity: .95;
|
|
27085
|
+
object-fit: contain;
|
|
27086
|
+
background: none;
|
|
27087
|
+
width: min(100%, 100vh - 330px);
|
|
27088
|
+
max-width: min(100vw, 100vh - 330px);
|
|
27089
|
+
height: min(100%, 100vh - 330px);
|
|
27090
|
+
max-height: min(100vh - 330px, 100vw);
|
|
27091
|
+
display: block;
|
|
27092
|
+
}
|
|
27093
|
+
|
|
27094
|
+
.opus_KL4dkl_controlRow {
|
|
27095
|
+
gap: 12px;
|
|
27096
|
+
display: flex;
|
|
27097
|
+
}
|
|
27098
|
+
|
|
27099
|
+
.opus_KL4dkl_controlButton {
|
|
27100
|
+
color: #f8fafc;
|
|
27101
|
+
background: #0f172acc;
|
|
27102
|
+
border: 1px solid #60a5fa80;
|
|
27103
|
+
border-radius: 16px;
|
|
27104
|
+
width: 64px;
|
|
27105
|
+
height: 64px;
|
|
27106
|
+
font-size: 1.25rem;
|
|
27107
|
+
}
|
|
27108
|
+
|
|
27109
|
+
@media (width >= 900px) {
|
|
27110
|
+
.opus_KL4dkl_container {
|
|
27111
|
+
padding-left: 24px;
|
|
27112
|
+
padding-right: 24px;
|
|
27113
|
+
}
|
|
27114
|
+
}
|
|
27115
|
+
|
|
27116
|
+
@media (width <= 520px) {
|
|
27117
|
+
.opus_KL4dkl_container {
|
|
27118
|
+
padding: 0;
|
|
27119
|
+
}
|
|
27120
|
+
|
|
27121
|
+
.opus_KL4dkl_canvasWrapper {
|
|
27122
|
+
height: calc(100vh - 280px);
|
|
27123
|
+
margin: 0;
|
|
27124
|
+
padding: 0;
|
|
27125
|
+
}
|
|
27126
|
+
|
|
27127
|
+
.opus_KL4dkl_canvas {
|
|
27128
|
+
width: min(100%, 100vh - 280px);
|
|
27129
|
+
max-width: min(100vw, 100vh - 280px);
|
|
27130
|
+
height: min(100%, 100vh - 280px);
|
|
27131
|
+
max-height: min(100vh - 280px, 100vw);
|
|
27132
|
+
}
|
|
27133
|
+
|
|
27134
|
+
.opus_KL4dkl_header {
|
|
27135
|
+
text-align: center;
|
|
27136
|
+
align-items: center;
|
|
27137
|
+
gap: 8px;
|
|
27138
|
+
}
|
|
27139
|
+
|
|
27140
|
+
.opus_KL4dkl_subtitle {
|
|
27141
|
+
font-size: clamp(.7rem, 3.8vw, .8rem);
|
|
27142
|
+
}
|
|
27143
|
+
|
|
27144
|
+
.opus_KL4dkl_statsRow {
|
|
27145
|
+
grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
|
|
27146
|
+
gap: 8px;
|
|
27147
|
+
}
|
|
27148
|
+
|
|
27149
|
+
.opus_KL4dkl_statBox {
|
|
27150
|
+
padding: 8px 10px;
|
|
27151
|
+
}
|
|
27152
|
+
|
|
27153
|
+
.opus_KL4dkl_statLabel {
|
|
27154
|
+
font-size: .65rem;
|
|
27155
|
+
}
|
|
27156
|
+
|
|
27157
|
+
.opus_KL4dkl_statValue {
|
|
27158
|
+
font-size: clamp(.85rem, 4.2vw, 1rem);
|
|
27159
|
+
}
|
|
27160
|
+
|
|
27161
|
+
.opus_KL4dkl_startGameButton, .opus_KL4dkl_newGameButton, .opus_KL4dkl_fullscreenButton {
|
|
27162
|
+
min-width: 96px;
|
|
27163
|
+
padding: 8px 14px;
|
|
27164
|
+
font-size: .825rem;
|
|
27165
|
+
}
|
|
27166
|
+
|
|
27167
|
+
.opus_KL4dkl_controlButton {
|
|
27168
|
+
width: 56px;
|
|
27169
|
+
height: 56px;
|
|
27170
|
+
font-size: 1.05rem;
|
|
27171
|
+
}
|
|
27172
|
+
}
|
|
27173
|
+
|
|
27174
|
+
.opus_KL4dkl_container[data-fullscreen="true"] {
|
|
27175
|
+
z-index: 10000;
|
|
27176
|
+
background: #020617;
|
|
27177
|
+
flex-direction: column;
|
|
27178
|
+
width: 100vw;
|
|
27179
|
+
max-width: none;
|
|
27180
|
+
height: 100vh;
|
|
27181
|
+
display: flex;
|
|
27182
|
+
position: fixed;
|
|
27183
|
+
inset: 0;
|
|
27184
|
+
}
|
|
27185
|
+
|
|
27186
|
+
.opus_KL4dkl_container[data-fullscreen="true"] .opus_KL4dkl_buttonContainer {
|
|
27187
|
+
flex-shrink: 0;
|
|
27188
|
+
padding: 12px 16px 0;
|
|
27189
|
+
}
|
|
27190
|
+
|
|
27191
|
+
.opus_KL4dkl_container[data-fullscreen="true"] .opus_KL4dkl_canvasWrapper {
|
|
27192
|
+
flex: 1;
|
|
27193
|
+
width: 100%;
|
|
27194
|
+
height: auto;
|
|
27195
|
+
min-height: 0;
|
|
27196
|
+
padding: 12px;
|
|
27197
|
+
}
|
|
27198
|
+
|
|
27199
|
+
.opus_KL4dkl_container[data-fullscreen="true"] .opus_KL4dkl_canvas {
|
|
27200
|
+
width: min(100%, 100vh - 96px);
|
|
27201
|
+
max-width: min(100vw - 24px, 100vh - 96px);
|
|
27202
|
+
height: min(100%, 100vh - 96px);
|
|
27203
|
+
max-height: min(100vh - 96px, 100vw - 24px);
|
|
27204
|
+
}
|
|
27205
|
+
|
|
26355
27206
|
/* components/FontPicker/FontPicker.module.css */
|
|
26356
27207
|
.opus_ub1fhz_field {
|
|
26357
27208
|
align-items: center;
|