- Implemented a new API endpoint for retrieving and managing user favorites in /api/users. - Added functionality for admins to edit the shared "main" user's favorites. - Created a one-shot DB smoke test script for verifying multi-user kiosk migrations. - Introduced a RoomClock class for synchronizing server time across clients using WebSocket.
1805 lines
34 KiB
CSS
1805 lines
34 KiB
CSS
:root {
|
|
--bg-0: #07080b;
|
|
--bg-1: #0e1116;
|
|
--bg-2: #161a22;
|
|
--bg-3: #1f242e;
|
|
--line: #262b36;
|
|
--fg: #e9ecf2;
|
|
--muted: #8a90a0;
|
|
--muted-2: #5d6373;
|
|
--accent: #ff7a3d;
|
|
--accent-2: #ffb37a;
|
|
--accent-glow: rgba(255, 122, 61, 0.35);
|
|
--good: #4ec9a6;
|
|
--bad: #ec6a6a;
|
|
--radius-sm: 10px;
|
|
--radius: 14px;
|
|
--radius-lg: 20px;
|
|
--pad: 16px;
|
|
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
|
|
--shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
|
|
--shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.55);
|
|
font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
|
|
font-feature-settings: "ss01", "cv11";
|
|
color-scheme: dark;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: radial-gradient(1200px 600px at 30% -10%, rgba(255, 122, 61, 0.08), transparent 60%),
|
|
radial-gradient(900px 500px at 100% 110%, rgba(78, 201, 166, 0.06), transparent 60%),
|
|
var(--bg-0);
|
|
color: var(--fg);
|
|
}
|
|
|
|
body {
|
|
-webkit-tap-highlight-color: transparent;
|
|
touch-action: manipulation;
|
|
user-select: none;
|
|
overflow: hidden;
|
|
}
|
|
|
|
button {
|
|
font: inherit;
|
|
color: inherit;
|
|
background: none;
|
|
border: 0;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
}
|
|
|
|
input,
|
|
select,
|
|
textarea {
|
|
font: inherit;
|
|
color: inherit;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--bg-3);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #2c323e;
|
|
}
|
|
|
|
/* === Kiosk shell 1080 x 660 === */
|
|
.kiosk #app {
|
|
width: 1080px;
|
|
height: 660px;
|
|
margin: 0 auto;
|
|
display: grid;
|
|
grid-template-rows: 92px 1fr;
|
|
gap: 12px;
|
|
padding: 12px;
|
|
}
|
|
|
|
/* === Now-playing bar === */
|
|
.now {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
gap: 16px;
|
|
padding: 10px 16px;
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
|
|
var(--bg-1);
|
|
border: 1px solid var(--line);
|
|
border-radius: var(--radius);
|
|
align-items: center;
|
|
box-shadow: var(--shadow-sm);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.now::before {
|
|
content: "";
|
|
position: absolute;
|
|
inset: 0;
|
|
background: radial-gradient(400px 120px at 0% 0%, var(--accent-glow), transparent 70%);
|
|
opacity: 0.5;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.now>* {
|
|
position: relative;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
|
|
0%,
|
|
100% {
|
|
box-shadow: 0 0 0 0 var(--accent-glow);
|
|
}
|
|
|
|
50% {
|
|
box-shadow: 0 0 0 6px transparent;
|
|
}
|
|
}
|
|
|
|
.now .meta {
|
|
min-width: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
|
|
.now .meta .name {
|
|
font-size: 19px;
|
|
font-weight: 700;
|
|
letter-spacing: -0.01em;
|
|
line-height: 1.15;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.now .meta .sub {
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.now .meta .tags {
|
|
display: flex;
|
|
gap: 5px;
|
|
flex-wrap: wrap;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.tag {
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
padding: 2px 8px;
|
|
border-radius: 999px;
|
|
background: rgba(255, 179, 122, 0.10);
|
|
color: var(--accent-2);
|
|
border: 1px solid rgba(255, 179, 122, 0.18);
|
|
}
|
|
|
|
.now .controls {
|
|
display: flex;
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
.btn-play,
|
|
.btn-stop {
|
|
width: 46px;
|
|
height: 46px;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 18px;
|
|
transition: transform 80ms ease, background 120ms ease, box-shadow 120ms ease;
|
|
}
|
|
|
|
.btn-play {
|
|
background: var(--accent);
|
|
color: #1a0a00;
|
|
font-weight: 900;
|
|
box-shadow: 0 6px 20px var(--accent-glow);
|
|
}
|
|
|
|
.btn-play:hover {
|
|
background: #ff8a55;
|
|
}
|
|
|
|
.btn-play:active {
|
|
transform: scale(0.94);
|
|
}
|
|
|
|
.btn-play.loading {
|
|
opacity: 0.65;
|
|
}
|
|
|
|
/* "Join group audio" affordance — pulses gently when a tap will silently
|
|
join the room's current stream without broadcasting a new command. */
|
|
.btn-play.cta-join {
|
|
animation: cta-pulse 1.8s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes cta-pulse {
|
|
|
|
0%,
|
|
100% {
|
|
box-shadow: 0 4px 12px var(--accent-glow);
|
|
}
|
|
|
|
50% {
|
|
box-shadow: 0 4px 22px var(--accent-glow), 0 0 0 6px rgba(255, 122, 61, 0.12);
|
|
}
|
|
}
|
|
|
|
.btn-stop {
|
|
background: var(--bg-2);
|
|
color: var(--muted);
|
|
border: 1px solid var(--line);
|
|
}
|
|
|
|
.btn-stop:not(:disabled):hover {
|
|
background: var(--bg-3);
|
|
color: var(--fg);
|
|
}
|
|
|
|
.btn-stop:disabled {
|
|
opacity: 0.35;
|
|
cursor: default;
|
|
}
|
|
|
|
.vol {
|
|
width: 170px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 6px 10px;
|
|
background: var(--bg-2);
|
|
border: 1px solid var(--line);
|
|
border-radius: 999px;
|
|
}
|
|
|
|
.vol .vol-icon {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.vol input[type=range] {
|
|
flex: 1;
|
|
height: 18px;
|
|
accent-color: var(--accent);
|
|
}
|
|
|
|
.vol .val {
|
|
width: 28px;
|
|
text-align: right;
|
|
color: var(--muted);
|
|
font-variant-numeric: tabular-nums;
|
|
font-size: 11px;
|
|
}
|
|
|
|
/* === Library shell === */
|
|
.lib {
|
|
background: var(--bg-1);
|
|
border: 1px solid var(--line);
|
|
border-radius: var(--radius);
|
|
padding: 10px 10px 6px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
gap: 8px;
|
|
box-shadow: var(--shadow-sm);
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.tabs {
|
|
display: flex;
|
|
gap: 4px;
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.tab {
|
|
padding: 9px 14px;
|
|
border-radius: 10px;
|
|
background: transparent;
|
|
color: var(--muted);
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
min-height: 38px;
|
|
border: 1px solid transparent;
|
|
transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
|
|
}
|
|
|
|
.tab:hover {
|
|
color: var(--fg);
|
|
background: var(--bg-2);
|
|
}
|
|
|
|
.tab.active {
|
|
background: linear-gradient(180deg, rgba(255, 122, 61, 0.18), rgba(255, 122, 61, 0.08));
|
|
color: var(--accent-2);
|
|
border-color: rgba(255, 122, 61, 0.30);
|
|
}
|
|
|
|
.header-tools {
|
|
display: flex;
|
|
gap: 6px;
|
|
align-items: center;
|
|
}
|
|
|
|
/* Group + listening-mode pill. Left half = group picker; right half = a
|
|
segmented Solo / Linked / Remote selector with a sliding indicator. */
|
|
.room-pill {
|
|
display: inline-flex;
|
|
align-items: stretch;
|
|
gap: 6px;
|
|
padding: 4px;
|
|
height: 36px;
|
|
background: var(--bg-2);
|
|
border: 1px solid var(--line);
|
|
border-radius: 999px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.room-pill .rp-group {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 0 10px 0 8px;
|
|
border-right: 1px solid var(--line);
|
|
}
|
|
|
|
.room-pill .rp-group-icon {
|
|
opacity: .8;
|
|
}
|
|
|
|
.room-pill .rp-group-select {
|
|
background: transparent;
|
|
color: var(--fg);
|
|
border: none;
|
|
outline: none;
|
|
font-size: 12px;
|
|
max-width: 140px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.room-pill .rp-peers {
|
|
color: var(--muted-2);
|
|
font-variant-numeric: tabular-nums;
|
|
min-width: 14px;
|
|
text-align: center;
|
|
background: var(--bg-1);
|
|
border-radius: 999px;
|
|
padding: 1px 6px;
|
|
}
|
|
|
|
.mode-pill {
|
|
position: relative;
|
|
display: inline-flex;
|
|
align-items: stretch;
|
|
background: var(--bg-1);
|
|
border-radius: 999px;
|
|
padding: 2px;
|
|
isolation: isolate;
|
|
}
|
|
|
|
.mode-pill .mode-indicator {
|
|
position: absolute;
|
|
top: 2px;
|
|
bottom: 2px;
|
|
left: 2px;
|
|
width: calc((100% - 4px) / 2);
|
|
border-radius: 999px;
|
|
background: linear-gradient(180deg, rgba(255, 122, 61, 0.28), rgba(255, 122, 61, 0.12));
|
|
border: 1px solid rgba(255, 122, 61, 0.35);
|
|
transition: transform 180ms cubic-bezier(.4, 0, .2, 1);
|
|
z-index: 0;
|
|
}
|
|
|
|
.mode-pill .mode-indicator.pos-solo {
|
|
transform: translateX(0%);
|
|
}
|
|
|
|
.mode-pill .mode-indicator.pos-synced {
|
|
transform: translateX(100%);
|
|
}
|
|
|
|
.mode-pill .mode-seg {
|
|
position: relative;
|
|
z-index: 1;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 0 10px;
|
|
height: 26px;
|
|
background: transparent;
|
|
border: none;
|
|
color: var(--muted-2);
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
border-radius: 999px;
|
|
transition: color 120ms ease;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.mode-pill .mode-seg:hover {
|
|
color: var(--fg);
|
|
}
|
|
|
|
.mode-pill .mode-seg.on {
|
|
color: var(--accent-2);
|
|
}
|
|
|
|
.mode-pill .mode-seg-icon {
|
|
font-size: 13px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.mode-pill .mode-seg-label {
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.mode-pill .mode-seg-label {
|
|
display: none;
|
|
}
|
|
|
|
.mode-pill .mode-seg {
|
|
padding: 0 8px;
|
|
}
|
|
}
|
|
|
|
/* Cross-client sync indicator (shown only in Linked mode). */
|
|
.sync-chip {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 0 10px;
|
|
height: 26px;
|
|
margin-left: 2px;
|
|
background: var(--bg-1);
|
|
border-radius: 999px;
|
|
font-size: 10px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
color: var(--muted-2);
|
|
transition: color 200ms ease, background 200ms ease;
|
|
}
|
|
|
|
.sync-chip .sync-dot {
|
|
font-size: 9px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.sync-chip.sync-in-sync {
|
|
color: #67e08a;
|
|
background: rgba(103, 224, 138, 0.08);
|
|
}
|
|
|
|
.sync-chip.sync-catching-up,
|
|
.sync-chip.sync-lagging,
|
|
.sync-chip.sync-measuring {
|
|
color: #f0c460;
|
|
background: rgba(240, 196, 96, 0.08);
|
|
}
|
|
|
|
.sync-chip.sync-out-of-range,
|
|
.sync-chip.sync-no-anchor,
|
|
.sync-chip.sync-no-buffer {
|
|
color: var(--muted-2);
|
|
}
|
|
|
|
.sync-chip .sync-buffer {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
width: 70px;
|
|
height: 4px;
|
|
margin-left: 6px;
|
|
background: rgba(255, 255, 255, 0.18);
|
|
border-radius: 999px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sync-chip .sync-buffer::-webkit-slider-thumb {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
background: currentColor;
|
|
border: none;
|
|
}
|
|
|
|
.sync-chip .sync-buffer::-moz-range-thumb {
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
background: currentColor;
|
|
border: none;
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.sync-chip .sync-label {
|
|
display: none;
|
|
}
|
|
|
|
.sync-chip {
|
|
padding: 0 6px;
|
|
}
|
|
|
|
.sync-chip .sync-buffer {
|
|
width: 50px;
|
|
}
|
|
}
|
|
|
|
.search {
|
|
width: 220px;
|
|
padding: 8px 12px;
|
|
height: 36px;
|
|
background: var(--bg-2);
|
|
color: var(--fg);
|
|
border: 1px solid var(--line);
|
|
border-radius: 999px;
|
|
font-size: 13px;
|
|
outline: none;
|
|
transition: border-color 120ms ease, box-shadow 120ms ease;
|
|
}
|
|
|
|
.search::placeholder {
|
|
color: var(--muted-2);
|
|
}
|
|
|
|
.search:focus {
|
|
border-color: var(--accent);
|
|
box-shadow: 0 0 0 3px var(--accent-glow);
|
|
}
|
|
|
|
.btn-add {
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 50%;
|
|
background: var(--accent);
|
|
color: #1a0a00;
|
|
font-size: 22px;
|
|
font-weight: 800;
|
|
line-height: 1;
|
|
box-shadow: 0 4px 12px var(--accent-glow);
|
|
transition: transform 80ms ease, background 120ms ease;
|
|
}
|
|
|
|
.btn-add:hover {
|
|
background: #ff8a55;
|
|
}
|
|
|
|
.btn-add:active {
|
|
transform: scale(0.94);
|
|
}
|
|
|
|
.btn-random {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
height: 36px;
|
|
padding: 0 12px;
|
|
border-radius: 999px;
|
|
background: var(--bg-2);
|
|
color: var(--fg);
|
|
border: 1px solid var(--line);
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
transition: background 120ms, border-color 120ms, transform 80ms;
|
|
}
|
|
|
|
.btn-random:hover {
|
|
background: var(--bg-3);
|
|
border-color: rgba(255, 122, 61, 0.4);
|
|
}
|
|
|
|
.btn-random:active {
|
|
transform: scale(0.96);
|
|
}
|
|
|
|
.btn-random .rand-icon {
|
|
font-size: 15px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.btn-random .rand-mode {
|
|
font-size: 11px;
|
|
padding: 2px 6px;
|
|
border-radius: 999px;
|
|
background: rgba(255, 122, 61, 0.18);
|
|
color: var(--accent-2);
|
|
border: 1px solid rgba(255, 122, 61, 0.30);
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.btn-docs {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 36px;
|
|
padding: 0 12px;
|
|
border-radius: 999px;
|
|
background: var(--bg-2);
|
|
color: var(--muted);
|
|
border: 1px solid var(--line);
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.06em;
|
|
text-decoration: none;
|
|
transition: background 120ms, color 120ms, border-color 120ms;
|
|
}
|
|
|
|
.btn-docs:hover {
|
|
background: var(--bg-3);
|
|
color: var(--fg);
|
|
border-color: rgba(78, 201, 166, 0.4);
|
|
}
|
|
|
|
.chips {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 5px;
|
|
max-height: 64px;
|
|
overflow-y: auto;
|
|
padding: 2px;
|
|
}
|
|
|
|
.chip {
|
|
padding: 4px 10px;
|
|
border-radius: 999px;
|
|
background: var(--bg-2);
|
|
color: var(--muted);
|
|
border: 1px solid var(--line);
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
min-height: 26px;
|
|
transition: background 120ms, color 120ms, border-color 120ms;
|
|
}
|
|
|
|
.chip:hover {
|
|
color: var(--fg);
|
|
}
|
|
|
|
.chip.active {
|
|
background: rgba(255, 122, 61, 0.18);
|
|
color: var(--accent-2);
|
|
border-color: rgba(255, 122, 61, 0.4);
|
|
}
|
|
|
|
.grid {
|
|
flex: 1;
|
|
min-height: 0;
|
|
overflow-y: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
padding: 2px 4px 6px 2px;
|
|
}
|
|
|
|
.card {
|
|
display: grid;
|
|
grid-template-columns: 44px 1fr auto auto;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 6px 10px 6px 6px;
|
|
background: var(--bg-2);
|
|
border: 1px solid transparent;
|
|
border-radius: 10px;
|
|
min-height: 56px;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
transition: background 100ms ease, border-color 100ms ease, transform 80ms ease;
|
|
position: relative;
|
|
}
|
|
|
|
.card:hover {
|
|
background: var(--bg-3);
|
|
}
|
|
|
|
.card:active {
|
|
transform: scale(0.995);
|
|
}
|
|
|
|
.card.playing {
|
|
background: linear-gradient(90deg, rgba(255, 122, 61, 0.14), var(--bg-2) 60%);
|
|
border-color: rgba(255, 122, 61, 0.35);
|
|
}
|
|
|
|
.card.playing::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 8px;
|
|
bottom: 8px;
|
|
width: 3px;
|
|
border-radius: 0 3px 3px 0;
|
|
background: var(--accent);
|
|
}
|
|
|
|
.card .art {
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 8px;
|
|
background: var(--bg-3) center/cover no-repeat;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 16px;
|
|
color: var(--muted-2);
|
|
flex-shrink: 0;
|
|
border: 1px solid var(--line);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.card .art .art-img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
display: block;
|
|
}
|
|
|
|
.card .card-body {
|
|
min-width: 0;
|
|
}
|
|
|
|
.card .n {
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
line-height: 1.2;
|
|
letter-spacing: -0.005em;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.card .g {
|
|
font-size: 11.5px;
|
|
color: var(--muted);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.card .fav,
|
|
.card .more {
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 16px;
|
|
color: var(--muted);
|
|
transition: background 100ms, color 100ms;
|
|
}
|
|
|
|
.card .fav:hover,
|
|
.card .more:hover {
|
|
background: rgba(255, 255, 255, 0.06);
|
|
color: var(--fg);
|
|
}
|
|
|
|
.card .fav.on {
|
|
color: var(--accent);
|
|
}
|
|
|
|
.card .more {
|
|
font-weight: 700;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.empty {
|
|
color: var(--muted);
|
|
padding: 32px 16px;
|
|
text-align: center;
|
|
font-size: 13px;
|
|
}
|
|
|
|
/* === Login overlay === */
|
|
.login {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: radial-gradient(800px 500px at 50% 0%, rgba(255, 122, 61, 0.10), transparent 60%),
|
|
rgba(7, 8, 11, 0.97);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 50;
|
|
}
|
|
|
|
.login form {
|
|
background: var(--bg-1);
|
|
border: 1px solid var(--line);
|
|
padding: 32px;
|
|
border-radius: var(--radius-lg);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 14px;
|
|
width: 380px;
|
|
box-shadow: var(--shadow-lg);
|
|
}
|
|
|
|
.login h1 {
|
|
margin: 0 0 8px;
|
|
font-size: 24px;
|
|
letter-spacing: -0.01em;
|
|
}
|
|
|
|
.login input {
|
|
background: var(--bg-2);
|
|
border: 1px solid var(--line);
|
|
color: var(--fg);
|
|
padding: 13px 14px;
|
|
border-radius: var(--radius-sm);
|
|
font-size: 15px;
|
|
outline: none;
|
|
transition: border-color 120ms, box-shadow 120ms;
|
|
}
|
|
|
|
.login input:focus {
|
|
border-color: var(--accent);
|
|
box-shadow: 0 0 0 3px var(--accent-glow);
|
|
}
|
|
|
|
.login button {
|
|
background: var(--accent);
|
|
color: #1a0a00;
|
|
font-weight: 700;
|
|
padding: 13px;
|
|
border-radius: var(--radius-sm);
|
|
font-size: 15px;
|
|
box-shadow: 0 6px 18px var(--accent-glow);
|
|
transition: background 120ms;
|
|
}
|
|
|
|
.login button:hover {
|
|
background: #ff8a55;
|
|
}
|
|
|
|
.login .err {
|
|
color: var(--bad);
|
|
font-size: 13px;
|
|
min-height: 18px;
|
|
}
|
|
|
|
/* === Add-station dialog === */
|
|
dialog.add-station {
|
|
border: 1px solid var(--line);
|
|
background: var(--bg-1);
|
|
color: var(--fg);
|
|
border-radius: var(--radius-lg);
|
|
padding: 0;
|
|
max-width: 520px;
|
|
width: 90%;
|
|
box-shadow: var(--shadow-lg);
|
|
}
|
|
|
|
dialog.add-station::backdrop {
|
|
background: rgba(7, 8, 11, 0.65);
|
|
backdrop-filter: blur(4px);
|
|
}
|
|
|
|
dialog.add-station form {
|
|
padding: 24px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
dialog.add-station h2 {
|
|
margin: 0 0 4px;
|
|
font-size: 18px;
|
|
letter-spacing: -0.01em;
|
|
}
|
|
|
|
dialog.add-station label {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
font-size: 11px;
|
|
color: var(--muted);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
dialog.add-station input,
|
|
dialog.add-station select {
|
|
background: var(--bg-2);
|
|
border: 1px solid var(--line);
|
|
color: var(--fg);
|
|
padding: 9px 11px;
|
|
border-radius: var(--radius-sm);
|
|
font-size: 14px;
|
|
outline: none;
|
|
transition: border-color 120ms, box-shadow 120ms;
|
|
}
|
|
|
|
dialog.add-station input:focus,
|
|
dialog.add-station select:focus {
|
|
border-color: var(--accent);
|
|
box-shadow: 0 0 0 3px var(--accent-glow);
|
|
}
|
|
|
|
dialog.add-station .row2 {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 12px;
|
|
}
|
|
|
|
dialog.add-station .err {
|
|
color: var(--bad);
|
|
font-size: 12px;
|
|
min-height: 14px;
|
|
}
|
|
|
|
dialog.add-station .actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
justify-content: flex-end;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--accent);
|
|
color: #1a0a00;
|
|
font-weight: 700;
|
|
padding: 9px 16px;
|
|
border-radius: var(--radius-sm);
|
|
font-size: 14px;
|
|
transition: background 120ms;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: #ff8a55;
|
|
}
|
|
|
|
.btn-ghost {
|
|
background: transparent;
|
|
color: var(--muted);
|
|
padding: 9px 16px;
|
|
border-radius: var(--radius-sm);
|
|
font-size: 14px;
|
|
border: 1px solid var(--line);
|
|
transition: color 120ms, background 120ms;
|
|
}
|
|
|
|
.btn-ghost:hover {
|
|
color: var(--fg);
|
|
background: var(--bg-2);
|
|
}
|
|
|
|
/* === Context menu (API endpoints) === */
|
|
.ctx-menu {
|
|
position: fixed;
|
|
z-index: 100;
|
|
min-width: 360px;
|
|
max-width: 460px;
|
|
background: var(--bg-1);
|
|
color: var(--fg);
|
|
border: 1px solid var(--line);
|
|
border-radius: var(--radius);
|
|
box-shadow: var(--shadow-lg);
|
|
padding: 10px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
animation: ctxIn 100ms ease-out;
|
|
}
|
|
|
|
@keyframes ctxIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(-4px) scale(0.98);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
.ctx-title {
|
|
font-weight: 700;
|
|
font-size: 13px;
|
|
padding: 4px 8px 0;
|
|
letter-spacing: -0.005em;
|
|
}
|
|
|
|
.ctx-sub {
|
|
font-size: 10.5px;
|
|
color: var(--muted-2);
|
|
padding: 0 8px 8px;
|
|
border-bottom: 1px solid var(--line);
|
|
font-family: ui-monospace, "SF Mono", Menlo, monospace;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.ctx-row {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto auto;
|
|
gap: 6px;
|
|
align-items: center;
|
|
padding: 6px 8px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.ctx-row:hover {
|
|
background: var(--bg-2);
|
|
}
|
|
|
|
.ctx-row-text {
|
|
min-width: 0;
|
|
}
|
|
|
|
.ctx-label {
|
|
font-size: 12px;
|
|
color: var(--fg);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.ctx-url {
|
|
font-size: 11px;
|
|
color: var(--muted);
|
|
font-family: ui-monospace, "SF Mono", Menlo, monospace;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.ctx-btn {
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 6px;
|
|
background: var(--bg-2);
|
|
color: var(--muted);
|
|
font-size: 13px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: background 100ms, color 100ms;
|
|
border: 1px solid var(--line);
|
|
}
|
|
|
|
.ctx-btn:hover {
|
|
background: var(--bg-3);
|
|
color: var(--fg);
|
|
}
|
|
|
|
.ctx-empty {
|
|
padding: 8px;
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.ctx-danger {
|
|
margin-top: 4px;
|
|
padding: 7px 10px;
|
|
border-radius: 8px;
|
|
background: transparent;
|
|
color: var(--bad);
|
|
border: 1px solid rgba(236, 106, 106, 0.25);
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
text-align: left;
|
|
}
|
|
|
|
.ctx-danger:hover {
|
|
background: rgba(236, 106, 106, 0.10);
|
|
}
|
|
|
|
/* === Toast === */
|
|
.toast {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
background: var(--bg-1);
|
|
padding: 10px 18px;
|
|
border-radius: 999px;
|
|
font-size: 13px;
|
|
color: var(--fg);
|
|
z-index: 200;
|
|
border: 1px solid var(--line);
|
|
box-shadow: var(--shadow);
|
|
animation: toastIn 180ms ease-out;
|
|
}
|
|
|
|
@keyframes toastIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translate(-50%, 8px);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translate(-50%, 0);
|
|
}
|
|
}
|
|
|
|
/* ============================================================
|
|
MINIMAL HIGH-CONTRAST THEME OVERRIDE
|
|
Flat surfaces, sharp 90deg corners, monochrome + single accent.
|
|
============================================================ */
|
|
:root {
|
|
--bg-0: #000000;
|
|
--bg-1: #0a0a0a;
|
|
--bg-2: #141414;
|
|
--bg-3: #1f1f1f;
|
|
--line: #2e2e2e;
|
|
--fg: #ffffff;
|
|
--muted: #a0a0a0;
|
|
--muted-2: #6a6a6a;
|
|
--accent: #ff5b00;
|
|
--accent-2: #ff5b00;
|
|
--accent-glow: transparent;
|
|
--good: #00d27a;
|
|
--bad: #ff3030;
|
|
--radius-sm: 0;
|
|
--radius: 0;
|
|
--radius-lg: 0;
|
|
--shadow-sm: none;
|
|
--shadow: none;
|
|
--shadow-lg: none;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
background: var(--bg-0) !important;
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
select,
|
|
textarea,
|
|
dialog {
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--bg-3) !important;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: var(--line) !important;
|
|
}
|
|
|
|
/* Flatten decorative gradients/glows */
|
|
.now {
|
|
background: var(--bg-1) !important;
|
|
box-shadow: none !important;
|
|
border-color: var(--line) !important;
|
|
}
|
|
|
|
.now::before {
|
|
display: none !important;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
|
|
0%,
|
|
100% {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
50% {
|
|
border-color: var(--line);
|
|
}
|
|
}
|
|
|
|
.now .meta .name {
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.01em;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.tag {
|
|
background: var(--bg-2) !important;
|
|
color: var(--fg) !important;
|
|
border-color: var(--line) !important;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.btn-play,
|
|
.btn-stop,
|
|
.btn-add {
|
|
box-shadow: none !important;
|
|
border: 1px solid var(--line);
|
|
transition: background 80ms linear, color 80ms linear, transform 60ms linear !important;
|
|
}
|
|
|
|
.btn-play,
|
|
.btn-add {
|
|
background: var(--accent) !important;
|
|
color: #000 !important;
|
|
border-color: var(--accent) !important;
|
|
}
|
|
|
|
.btn-play:hover,
|
|
.btn-add:hover {
|
|
background: #fff !important;
|
|
color: #000 !important;
|
|
border-color: #fff !important;
|
|
}
|
|
|
|
.btn-stop {
|
|
background: var(--bg-2) !important;
|
|
color: var(--fg) !important;
|
|
}
|
|
|
|
.btn-stop:not(:disabled):hover {
|
|
background: #fff !important;
|
|
color: #000 !important;
|
|
border-color: #fff !important;
|
|
}
|
|
|
|
.vol {
|
|
background: var(--bg-2) !important;
|
|
border-color: var(--line) !important;
|
|
}
|
|
|
|
.lib {
|
|
background: var(--bg-1) !important;
|
|
box-shadow: none !important;
|
|
border-color: var(--line) !important;
|
|
}
|
|
|
|
/* Tabs: connected high-contrast segmented control */
|
|
.tabs {
|
|
gap: 0 !important;
|
|
}
|
|
|
|
.tab {
|
|
border: 1px solid var(--line) !important;
|
|
margin-right: -1px !important;
|
|
background: transparent !important;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
font-weight: 700;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.tab:hover {
|
|
background: var(--bg-2) !important;
|
|
color: var(--fg) !important;
|
|
}
|
|
|
|
.tab.active {
|
|
background: var(--accent) !important;
|
|
color: #000 !important;
|
|
border-color: var(--accent) !important;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.search {
|
|
background: var(--bg-2) !important;
|
|
border-color: var(--line) !important;
|
|
}
|
|
|
|
.search:focus {
|
|
border-color: var(--accent) !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.chip {
|
|
background: var(--bg-2) !important;
|
|
border-color: var(--line) !important;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.chip:hover {
|
|
color: var(--fg) !important;
|
|
border-color: var(--fg) !important;
|
|
}
|
|
|
|
.chip.active {
|
|
background: var(--accent) !important;
|
|
color: #000 !important;
|
|
border-color: var(--accent) !important;
|
|
}
|
|
|
|
/* Card list: tight, sharp, single-pixel grid */
|
|
.grid {
|
|
gap: 0 !important;
|
|
}
|
|
|
|
.card {
|
|
background: var(--bg-1) !important;
|
|
border: 1px solid var(--line) !important;
|
|
margin-bottom: -1px;
|
|
transition: background 60ms linear, border-color 60ms linear !important;
|
|
}
|
|
|
|
.card:hover {
|
|
background: var(--bg-2) !important;
|
|
border-color: var(--muted-2) !important;
|
|
z-index: 1;
|
|
}
|
|
|
|
.card:active {
|
|
transform: none !important;
|
|
}
|
|
|
|
.card.playing {
|
|
background: var(--bg-2) !important;
|
|
border-color: var(--accent) !important;
|
|
z-index: 2;
|
|
}
|
|
|
|
.card.playing::before {
|
|
left: 0 !important;
|
|
top: 0 !important;
|
|
bottom: 0 !important;
|
|
width: 4px !important;
|
|
background: var(--accent) !important;
|
|
}
|
|
|
|
.card .art {
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.card .n {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.card .g {
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.03em;
|
|
}
|
|
|
|
.card .fav:hover,
|
|
.card .more:hover {
|
|
background: var(--bg-3) !important;
|
|
color: var(--fg) !important;
|
|
border: 1px solid var(--line) !important;
|
|
}
|
|
|
|
.empty {
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
/* Login */
|
|
.login {
|
|
background: #000 !important;
|
|
}
|
|
|
|
.login form {
|
|
border: 1px solid #fff !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.login h1 {
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
font-weight: 900;
|
|
}
|
|
|
|
.login input {
|
|
background: var(--bg-2) !important;
|
|
border-color: var(--line) !important;
|
|
}
|
|
|
|
.login input:focus {
|
|
border-color: var(--accent) !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.login button {
|
|
background: var(--accent) !important;
|
|
color: #000 !important;
|
|
border: 1px solid var(--accent) !important;
|
|
box-shadow: none !important;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
font-weight: 900;
|
|
}
|
|
|
|
.login button:hover {
|
|
background: #fff !important;
|
|
color: #000 !important;
|
|
border-color: #fff !important;
|
|
}
|
|
|
|
/* Dialogs */
|
|
dialog.add-station {
|
|
border: 1px solid #fff !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
dialog.add-station::backdrop {
|
|
background: rgba(0, 0, 0, 0.85) !important;
|
|
backdrop-filter: none !important;
|
|
}
|
|
|
|
dialog.add-station h2 {
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
font-weight: 900;
|
|
}
|
|
|
|
dialog.add-station label {
|
|
letter-spacing: 0.08em;
|
|
font-weight: 700;
|
|
}
|
|
|
|
dialog.add-station input,
|
|
dialog.add-station select {
|
|
background: var(--bg-2) !important;
|
|
border-color: var(--line) !important;
|
|
}
|
|
|
|
dialog.add-station input:focus,
|
|
dialog.add-station select:focus {
|
|
border-color: var(--accent) !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--accent) !important;
|
|
color: #000 !important;
|
|
border: 1px solid var(--accent) !important;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
font-weight: 900;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: #fff !important;
|
|
color: #000 !important;
|
|
border-color: #fff !important;
|
|
}
|
|
|
|
.btn-ghost {
|
|
background: transparent !important;
|
|
border: 1px solid var(--line) !important;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.btn-ghost:hover {
|
|
color: var(--fg) !important;
|
|
background: var(--bg-2) !important;
|
|
border-color: var(--fg) !important;
|
|
}
|
|
|
|
/* Context menu */
|
|
.ctx-menu {
|
|
border: 1px solid #fff !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.ctx-title {
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
font-weight: 900;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.ctx-row {
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.ctx-row:hover {
|
|
background: var(--bg-2) !important;
|
|
border-color: var(--line);
|
|
}
|
|
|
|
.ctx-btn {
|
|
background: var(--bg-2) !important;
|
|
border: 1px solid var(--line) !important;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.ctx-btn:hover {
|
|
background: #fff !important;
|
|
color: #000 !important;
|
|
border-color: #fff !important;
|
|
}
|
|
|
|
.ctx-danger {
|
|
background: transparent !important;
|
|
border: 1px solid var(--bad) !important;
|
|
color: var(--bad) !important;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.ctx-danger:hover {
|
|
background: var(--bad) !important;
|
|
color: #000 !important;
|
|
}
|
|
|
|
/* Toast */
|
|
.toast {
|
|
background: #fff !important;
|
|
color: #000 !important;
|
|
border: 1px solid #fff !important;
|
|
box-shadow: none !important;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
font-weight: 800;
|
|
font-size: 12px;
|
|
}
|
|
|
|
/* ============================================================
|
|
Voting: up/down buttons in the now-playing bar, score badge
|
|
on every card, and a sort dropdown for the Browse tab.
|
|
============================================================ */
|
|
|
|
.vote-group {
|
|
display: flex;
|
|
gap: 0;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
.vote {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
height: 46px;
|
|
min-width: 64px;
|
|
padding: 0 12px;
|
|
background: var(--bg-2) !important;
|
|
color: var(--fg);
|
|
border: 1px solid var(--line) !important;
|
|
font-weight: 800;
|
|
font-size: 14px;
|
|
font-variant-numeric: tabular-nums;
|
|
transition: background 80ms linear, color 80ms linear, border-color 80ms linear !important;
|
|
}
|
|
|
|
.vote+.vote {
|
|
margin-left: -1px;
|
|
}
|
|
|
|
.vote:disabled {
|
|
opacity: 0.35;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.vote .vote-icon {
|
|
font-size: 17px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.vote .vote-count {
|
|
font-size: 13px;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.vote.up:not(:disabled):hover {
|
|
background: var(--good) !important;
|
|
color: #000 !important;
|
|
border-color: var(--good) !important;
|
|
}
|
|
|
|
.vote.down:not(:disabled):hover {
|
|
background: var(--bad) !important;
|
|
color: #000 !important;
|
|
border-color: var(--bad) !important;
|
|
}
|
|
|
|
.vote.up.on {
|
|
background: var(--good) !important;
|
|
color: #000 !important;
|
|
border-color: var(--good) !important;
|
|
}
|
|
|
|
.vote.down.on {
|
|
background: var(--bad) !important;
|
|
color: #000 !important;
|
|
border-color: var(--bad) !important;
|
|
}
|
|
|
|
/* Sort dropdown next to search */
|
|
.sort {
|
|
height: 36px;
|
|
padding: 0 28px 0 12px;
|
|
background: var(--bg-2) !important;
|
|
color: var(--fg);
|
|
border: 1px solid var(--line) !important;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
appearance: none;
|
|
background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
|
|
linear-gradient(135deg, var(--muted) 50%, transparent 50%);
|
|
background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
|
|
background-size: 5px 5px, 5px 5px;
|
|
background-repeat: no-repeat;
|
|
outline: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sort:focus,
|
|
.sort:hover {
|
|
border-color: var(--accent) !important;
|
|
}
|
|
|
|
.sort option {
|
|
background: var(--bg-1);
|
|
color: var(--fg);
|
|
}
|
|
|
|
/* Grid card: add a column for the score badge. */
|
|
.card {
|
|
grid-template-columns: 44px 1fr auto auto auto !important;
|
|
}
|
|
|
|
.score-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-width: 36px;
|
|
height: 26px;
|
|
padding: 0 8px;
|
|
background: var(--bg-2);
|
|
border: 1px solid var(--line);
|
|
color: var(--muted);
|
|
font-weight: 800;
|
|
font-size: 12px;
|
|
font-variant-numeric: tabular-nums;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.score-badge.pos {
|
|
color: var(--good);
|
|
border-color: rgba(0, 210, 122, 0.35);
|
|
}
|
|
|
|
.score-badge.neg {
|
|
color: var(--bad);
|
|
border-color: rgba(255, 48, 48, 0.35);
|
|
}
|
|
|
|
.score-badge.neu {
|
|
color: var(--muted-2);
|
|
}
|
|
|
|
.card.playing .score-badge {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
/* === Click-to-start gate modal === */
|
|
.play-gate-backdrop {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.72);
|
|
backdrop-filter: blur(6px);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.play-gate-card {
|
|
background: var(--bg-2);
|
|
border: 1px solid var(--line);
|
|
border-radius: var(--radius-lg);
|
|
padding: 28px 32px;
|
|
min-width: 320px;
|
|
max-width: 480px;
|
|
box-shadow: var(--shadow-lg);
|
|
text-align: center;
|
|
}
|
|
|
|
.play-gate-title {
|
|
margin: 0 0 8px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.play-gate-station {
|
|
color: var(--accent);
|
|
font-weight: 600;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.play-gate-sub {
|
|
color: var(--muted);
|
|
font-size: 13px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.play-gate-row {
|
|
display: flex;
|
|
gap: 12px;
|
|
justify-content: center;
|
|
margin-top: 18px;
|
|
}
|
|
|
|
.play-gate-start,
|
|
.play-gate-cancel {
|
|
padding: 10px 22px;
|
|
border-radius: var(--radius);
|
|
border: 1px solid var(--line);
|
|
background: var(--bg-3);
|
|
color: var(--fg);
|
|
font-size: 15px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.play-gate-start {
|
|
background: var(--accent);
|
|
border-color: var(--accent);
|
|
color: #07080b;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.play-gate-start:hover {
|
|
filter: brightness(1.1);
|
|
}
|
|
|
|
.play-gate-cancel:hover {
|
|
background: var(--bg-1);
|
|
}
|
|
|
|
.play-gate-dismiss {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 14px;
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* === Synced audio sub-toggle === */
|
|
.synced-audio-toggle {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
background: var(--bg-1);
|
|
border: 1px solid var(--line);
|
|
border-radius: 999px;
|
|
padding: 4px 10px;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.synced-audio-toggle.on {
|
|
color: var(--fg);
|
|
border-color: rgba(255, 122, 61, 0.35);
|
|
}
|
|
|
|
.synced-audio-toggle input {
|
|
display: none;
|
|
}
|
|
|
|
.synced-audio-toggle .sa-icon {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.vol.vol-master .vol-icon {
|
|
color: var(--accent);
|
|
}
|
|
|
|
.vol.vol-local {
|
|
opacity: 0.92;
|
|
} |