2026-04-15 16:55:54 +08:00
|
|
|
.app-shell {
|
2026-04-15 22:56:50 +08:00
|
|
|
width: min(1240px, calc(100% - 32px));
|
2026-04-15 16:55:54 +08:00
|
|
|
margin: 0 auto;
|
2026-04-15 22:56:50 +08:00
|
|
|
padding: 28px 0 56px;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.app-shell-scoreboard {
|
|
|
|
|
width: min(1180px, calc(100% - 20px));
|
|
|
|
|
padding-top: 16px;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.topbar {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 24px;
|
|
|
|
|
align-items: end;
|
|
|
|
|
margin-bottom: 24px;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.topbar-compact {
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 14px;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.branding {
|
|
|
|
|
max-width: 760px;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.eyebrow,
|
2026-04-15 22:56:50 +08:00
|
|
|
.panel-kicker,
|
|
|
|
|
.team-index {
|
2026-04-15 16:55:54 +08:00
|
|
|
display: inline-flex;
|
2026-04-15 22:56:50 +08:00
|
|
|
letter-spacing: 0.14em;
|
2026-04-15 16:55:54 +08:00
|
|
|
text-transform: uppercase;
|
2026-04-15 22:56:50 +08:00
|
|
|
font-size: 0.76rem;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.eyebrow {
|
2026-04-15 22:56:50 +08:00
|
|
|
margin-bottom: 12px;
|
|
|
|
|
padding: 8px 12px;
|
2026-04-15 16:55:54 +08:00
|
|
|
border-radius: 999px;
|
|
|
|
|
color: #effce4;
|
2026-04-15 22:56:50 +08:00
|
|
|
background: rgba(8, 47, 73, 0.84);
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.intro-copy {
|
|
|
|
|
max-width: 60ch;
|
|
|
|
|
margin-top: 10px;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.topnav {
|
2026-04-15 16:55:54 +08:00
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
2026-04-15 22:56:50 +08:00
|
|
|
gap: 10px;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.nav-pill,
|
|
|
|
|
.inline-link {
|
|
|
|
|
padding: 12px 16px;
|
2026-04-15 16:55:54 +08:00
|
|
|
border-radius: 999px;
|
2026-04-15 22:56:50 +08:00
|
|
|
color: var(--panel-strong);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
background: rgba(255, 255, 255, 0.58);
|
|
|
|
|
border: 1px solid rgba(10, 51, 45, 0.1);
|
|
|
|
|
transition: transform 0.18s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-pill:hover,
|
|
|
|
|
.inline-link:hover {
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-pill-active {
|
|
|
|
|
color: #f7fff7;
|
|
|
|
|
background: linear-gradient(135deg, rgba(8, 47, 73, 0.96), rgba(10, 96, 84, 0.92));
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-16 19:57:08 +08:00
|
|
|
.pwa-update-toast {
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 50%;
|
|
|
|
|
bottom: 18px;
|
|
|
|
|
z-index: 1200;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 14px;
|
|
|
|
|
width: min(560px, calc(100vw - 24px));
|
|
|
|
|
padding: 14px 16px;
|
|
|
|
|
border: 1px solid rgba(10, 51, 45, 0.16);
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
background: rgba(255, 249, 236, 0.96);
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 22px 46px rgba(10, 51, 45, 0.22),
|
|
|
|
|
0 8px 18px rgba(10, 51, 45, 0.12);
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
backdrop-filter: blur(14px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pwa-update-copy {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 2px;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pwa-update-copy strong {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
color: var(--panel-strong);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pwa-update-copy span {
|
|
|
|
|
font-size: 0.88rem;
|
|
|
|
|
color: var(--panel-soft);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pwa-update-button {
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
min-width: 96px;
|
|
|
|
|
padding: 10px 14px;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
background: linear-gradient(135deg, #0d5d53, #123f49);
|
|
|
|
|
color: #f8fff8;
|
|
|
|
|
font: inherit;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pwa-update-button:hover {
|
|
|
|
|
filter: brightness(1.06);
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.page-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
|
|
|
|
|
gap: 22px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.full-span {
|
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel {
|
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
|
border-radius: 28px;
|
|
|
|
|
background: rgba(255, 255, 255, 0.78);
|
|
|
|
|
box-shadow: var(--shadow);
|
2026-04-15 16:55:54 +08:00
|
|
|
padding: 28px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.panel-hero {
|
|
|
|
|
background:
|
|
|
|
|
radial-gradient(circle at top right, rgba(255, 196, 0, 0.24), transparent 30%),
|
|
|
|
|
linear-gradient(145deg, rgba(8, 47, 73, 0.95), rgba(10, 96, 84, 0.92));
|
|
|
|
|
color: #f5fff8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel-hero h2,
|
|
|
|
|
.panel-hero p,
|
|
|
|
|
.panel-hero .panel-kicker {
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel-copy {
|
|
|
|
|
margin-top: 12px;
|
|
|
|
|
max-width: 34rem;
|
|
|
|
|
color: rgba(245, 255, 248, 0.78);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel-heading,
|
|
|
|
|
.group-head,
|
|
|
|
|
.history-head {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
align-items: start;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 14:37:32 +08:00
|
|
|
.group-head-compact {
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group-head-compact > div:first-child {
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group-head-compact h3 {
|
|
|
|
|
margin: 4px 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.summary-grid,
|
|
|
|
|
.double-grid,
|
|
|
|
|
.history-list,
|
|
|
|
|
.history-meta {
|
2026-04-15 16:55:54 +08:00
|
|
|
display: grid;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.summary-grid {
|
|
|
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
|
|
|
margin-top: 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mini-stat {
|
|
|
|
|
padding: 18px;
|
|
|
|
|
border-radius: 22px;
|
|
|
|
|
background: rgba(255, 255, 255, 0.12);
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.18);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mini-stat span {
|
|
|
|
|
display: block;
|
|
|
|
|
color: rgba(245, 255, 248, 0.76);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mini-stat strong {
|
|
|
|
|
display: block;
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
font-size: 1.6rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-banner {
|
|
|
|
|
margin-top: 24px;
|
|
|
|
|
padding: 14px 16px;
|
|
|
|
|
border-radius: 18px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-banner-loading {
|
|
|
|
|
background: rgba(255, 255, 255, 0.16);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-banner-loaded {
|
|
|
|
|
color: #103b34;
|
|
|
|
|
background: rgba(201, 255, 215, 0.9);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-banner-empty {
|
|
|
|
|
color: #5f3c0a;
|
|
|
|
|
background: rgba(255, 239, 190, 0.94);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-banner-error {
|
|
|
|
|
color: #5b1020;
|
|
|
|
|
background: rgba(255, 214, 224, 0.94);
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 10:55:41 +08:00
|
|
|
.floating-status-bubble {
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 50%;
|
2026-04-16 12:37:38 +08:00
|
|
|
bottom: 22px;
|
2026-04-16 10:55:41 +08:00
|
|
|
z-index: 60;
|
2026-04-16 12:37:38 +08:00
|
|
|
transform: translateX(-50%);
|
2026-04-16 10:55:41 +08:00
|
|
|
min-width: min(78vw, 320px);
|
|
|
|
|
max-width: min(84vw, 420px);
|
|
|
|
|
padding: 14px 20px;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: #f8fff9;
|
|
|
|
|
background: linear-gradient(135deg, rgba(8, 47, 73, 0.96), rgba(10, 96, 84, 0.92));
|
|
|
|
|
box-shadow: 0 18px 40px rgba(8, 47, 73, 0.28);
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
animation: status-bubble-in 0.18s ease-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes status-bubble-in {
|
|
|
|
|
from {
|
|
|
|
|
opacity: 0;
|
2026-04-16 12:37:38 +08:00
|
|
|
transform: translateX(-50%) translateY(10px) scale(0.96);
|
2026-04-16 10:55:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
to {
|
|
|
|
|
opacity: 1;
|
2026-04-16 12:37:38 +08:00
|
|
|
transform: translateX(-50%) translateY(0) scale(1);
|
2026-04-16 10:55:41 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.selection-shell,
|
|
|
|
|
.selection-form,
|
|
|
|
|
.group-board {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.selection-toolbar {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
|
|
|
gap: 16px;
|
2026-04-15 16:55:54 +08:00
|
|
|
align-items: end;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 14:37:32 +08:00
|
|
|
.selection-toolbar > .field {
|
|
|
|
|
width: min(100%, 220px);
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.double-grid {
|
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.field {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 8px;
|
2026-04-16 12:37:38 +08:00
|
|
|
min-width: 0;
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.field span {
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.field input,
|
|
|
|
|
.field textarea,
|
|
|
|
|
.field select {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 14px 16px;
|
|
|
|
|
border: 1px solid rgba(10, 51, 45, 0.16);
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
background: rgba(255, 255, 255, 0.94);
|
|
|
|
|
color: var(--panel-strong);
|
|
|
|
|
font: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.field textarea {
|
|
|
|
|
resize: vertical;
|
|
|
|
|
min-height: 200px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 12:37:38 +08:00
|
|
|
.field input[type='date'] {
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.button-stack {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
align-content: end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.primary-button,
|
|
|
|
|
.secondary-button {
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font: inherit;
|
|
|
|
|
padding: 14px 18px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.primary-button {
|
|
|
|
|
color: #f8fff8;
|
|
|
|
|
background: linear-gradient(135deg, rgba(8, 47, 73, 0.96), rgba(10, 96, 84, 0.92));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.secondary-button {
|
|
|
|
|
color: var(--panel-strong);
|
|
|
|
|
background: rgba(11, 88, 73, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.selection-hint {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
padding: 14px 16px;
|
|
|
|
|
border-radius: 18px;
|
|
|
|
|
background: rgba(10, 51, 45, 0.05);
|
|
|
|
|
color: var(--panel-soft);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group-card,
|
|
|
|
|
.history-card,
|
|
|
|
|
.empty-state {
|
|
|
|
|
padding: 22px;
|
|
|
|
|
border-radius: 22px;
|
|
|
|
|
background: rgba(246, 249, 244, 0.95);
|
|
|
|
|
border: 1px solid rgba(10, 51, 45, 0.08);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group-card-stage {
|
|
|
|
|
background:
|
|
|
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 242, 0.94));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-stage-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
|
|
|
gap: 14px;
|
|
|
|
|
margin-top: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-stage-card {
|
|
|
|
|
padding: 18px;
|
|
|
|
|
border-radius: 18px;
|
|
|
|
|
background: rgba(255, 255, 255, 0.88);
|
|
|
|
|
border: 1px solid rgba(10, 51, 45, 0.08);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-index {
|
|
|
|
|
color: var(--panel-soft);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-name {
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
font-size: 1.08rem;
|
|
|
|
|
color: var(--panel-strong);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.winner-badge {
|
|
|
|
|
align-self: start;
|
2026-04-15 16:55:54 +08:00
|
|
|
padding: 10px 14px;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
color: var(--panel-strong);
|
|
|
|
|
background: rgba(11, 88, 73, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.history-meta {
|
|
|
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-meta span {
|
|
|
|
|
color: var(--panel-soft);
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 23:04:16 +08:00
|
|
|
.history-card-button {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: 0;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
text-align: left;
|
|
|
|
|
font: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-card-button:hover {
|
|
|
|
|
box-shadow: 0 12px 28px rgba(8, 47, 73, 0.08);
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 10:26:58 +08:00
|
|
|
.history-card-shell {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
|
|
|
gap: 14px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-card-content {
|
|
|
|
|
padding: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-delete-button {
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font: inherit;
|
|
|
|
|
color: #fff;
|
|
|
|
|
background: linear-gradient(180deg, #e57a63, #c44c3d);
|
|
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(161, 54, 37, 0.22),
|
|
|
|
|
0 10px 18px rgba(8, 47, 73, 0.12);
|
|
|
|
|
transition:
|
|
|
|
|
transform 0.16s ease,
|
|
|
|
|
box-shadow 0.16s ease,
|
|
|
|
|
filter 0.16s ease,
|
|
|
|
|
opacity 0.16s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-delete-button:hover:not(:disabled) {
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(161, 54, 37, 0.28),
|
|
|
|
|
0 14px 22px rgba(8, 47, 73, 0.16);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-delete-button:active:not(:disabled) {
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
filter: brightness(0.98);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-delete-button:disabled {
|
|
|
|
|
cursor: default;
|
|
|
|
|
opacity: 0.62;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.scoreboard-screen {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: minmax(0, 1fr) 160px;
|
|
|
|
|
gap: 14px;
|
|
|
|
|
align-items: start;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 16:54:59 +08:00
|
|
|
.streak-banner {
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 50%;
|
|
|
|
|
top: 18%;
|
|
|
|
|
z-index: 85;
|
|
|
|
|
display: grid;
|
|
|
|
|
justify-items: center;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
min-width: min(88vw, 420px);
|
|
|
|
|
padding: 18px 28px;
|
|
|
|
|
border-radius: 28px;
|
|
|
|
|
color: #fff8e8;
|
|
|
|
|
background:
|
|
|
|
|
radial-gradient(circle at top, rgba(255, 219, 112, 0.38), transparent 46%),
|
|
|
|
|
linear-gradient(135deg, rgba(143, 25, 26, 0.96), rgba(248, 128, 45, 0.92));
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 24px 48px rgba(8, 47, 73, 0.32),
|
|
|
|
|
inset 0 0 0 1px rgba(255, 238, 194, 0.24);
|
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
animation: streak-banner-burst 1.8s ease forwards;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.streak-banner-count {
|
|
|
|
|
font-size: 0.96rem;
|
|
|
|
|
letter-spacing: 0.18em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: rgba(255, 244, 214, 0.86);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.streak-banner strong {
|
|
|
|
|
font-size: clamp(2rem, 7vw, 3.6rem);
|
|
|
|
|
line-height: 1;
|
|
|
|
|
text-shadow:
|
|
|
|
|
0 2px 0 rgba(101, 14, 10, 0.28),
|
|
|
|
|
0 0 22px rgba(255, 226, 154, 0.24);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.streak-banner small {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
color: rgba(255, 248, 232, 0.92);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.victory-banner {
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 50%;
|
|
|
|
|
top: 22%;
|
|
|
|
|
z-index: 86;
|
|
|
|
|
display: grid;
|
|
|
|
|
justify-items: center;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
min-width: min(90vw, 460px);
|
|
|
|
|
padding: 22px 30px;
|
|
|
|
|
border-radius: 30px;
|
|
|
|
|
color: #4a2e1d;
|
|
|
|
|
background:
|
|
|
|
|
radial-gradient(circle at top, rgba(255, 255, 255, 0.34), transparent 40%),
|
|
|
|
|
linear-gradient(135deg, rgba(255, 243, 196, 0.98), rgba(255, 199, 92, 0.94));
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 30px 56px rgba(8, 47, 73, 0.28),
|
|
|
|
|
0 0 0 6px rgba(255, 243, 211, 0.16),
|
|
|
|
|
inset 0 0 0 1px rgba(196, 134, 32, 0.34);
|
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
animation: victory-banner-burst 2.2s ease forwards;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.victory-banner-kicker {
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
letter-spacing: 0.18em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: rgba(101, 67, 22, 0.82);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.victory-banner strong {
|
|
|
|
|
font-size: clamp(2.2rem, 8vw, 4rem);
|
|
|
|
|
line-height: 1;
|
|
|
|
|
text-shadow:
|
|
|
|
|
0 2px 0 rgba(255, 255, 255, 0.4),
|
|
|
|
|
0 0 22px rgba(255, 242, 176, 0.34);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.victory-banner small,
|
|
|
|
|
.victory-banner em {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
color: rgba(74, 46, 29, 0.9);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes streak-banner-burst {
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translate(-50%, 12px) scale(0.88);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
15% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translate(-50%, 0) scale(1.04);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
70% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translate(-50%, 0) scale(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translate(-50%, -12px) scale(0.96);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes victory-banner-burst {
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translate(-50%, 18px) scale(0.84);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
14% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translate(-50%, 0) scale(1.06);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
68% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translate(-50%, 0) scale(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translate(-50%, -18px) scale(0.96);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.scoreboard-court {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 14px;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
border-radius: 22px;
|
2026-04-16 08:53:05 +08:00
|
|
|
background:
|
|
|
|
|
radial-gradient(circle at top right, rgba(255, 205, 96, 0.22), transparent 26%),
|
|
|
|
|
linear-gradient(145deg, rgba(8, 47, 73, 0.97), rgba(10, 96, 84, 0.93));
|
|
|
|
|
box-shadow: 0 30px 60px rgba(8, 47, 73, 0.24);
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scoreboard-team-section {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scoreboard-team-head {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: minmax(0, 1fr) 62px;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-head-main {
|
|
|
|
|
display: grid;
|
2026-04-15 16:55:54 +08:00
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
2026-04-15 22:56:50 +08:00
|
|
|
gap: 8px;
|
|
|
|
|
min-height: 64px;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
border-radius: 4px;
|
2026-04-16 08:53:05 +08:00
|
|
|
background: rgba(255, 248, 232, 0.92);
|
|
|
|
|
box-shadow: inset 0 0 0 1px rgba(195, 154, 88, 0.2);
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.scoreboard-name-chip {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
min-height: 46px;
|
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
border-radius: 4px;
|
2026-04-16 08:53:05 +08:00
|
|
|
color: #16342f;
|
|
|
|
|
background: rgba(255, 255, 255, 0.7);
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.scoreboard-name-chip strong {
|
|
|
|
|
font-size: clamp(1rem, 2.4vw, 1.9rem);
|
|
|
|
|
line-height: 1;
|
|
|
|
|
font-weight: 500;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.scoreboard-name-chip-serving {
|
2026-04-16 08:53:05 +08:00
|
|
|
background: linear-gradient(180deg, #ebf8a4, #d6e164);
|
|
|
|
|
box-shadow: inset 0 0 0 2px rgba(111, 128, 27, 0.24);
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.team-number {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 40px;
|
|
|
|
|
height: 40px;
|
|
|
|
|
flex: 0 0 40px;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 1.15rem;
|
|
|
|
|
color: #fff;
|
2026-04-16 08:53:05 +08:00
|
|
|
background: linear-gradient(180deg, rgba(8, 47, 73, 0.96), rgba(10, 96, 84, 0.92));
|
2026-04-15 22:56:50 +08:00
|
|
|
border-radius: 4px;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.team-head-buttons {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 10px;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.team-icon-button {
|
|
|
|
|
min-height: 40px;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font: inherit;
|
|
|
|
|
font-size: 1.2rem;
|
2026-04-16 08:53:05 +08:00
|
|
|
color: #5b2f13;
|
|
|
|
|
background: linear-gradient(180deg, #fff8e8, #f2d9a3);
|
|
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(199, 155, 83, 0.35),
|
|
|
|
|
0 6px 14px rgba(8, 47, 73, 0.14);
|
|
|
|
|
transition:
|
|
|
|
|
transform 0.16s ease,
|
|
|
|
|
box-shadow 0.16s ease,
|
|
|
|
|
filter 0.16s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-icon-button:hover:not(:disabled) {
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(199, 155, 83, 0.45),
|
|
|
|
|
0 10px 18px rgba(8, 47, 73, 0.18);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-icon-button:active:not(:disabled) {
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
filter: brightness(0.98);
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-icon-button:disabled {
|
|
|
|
|
opacity: 0.45;
|
|
|
|
|
cursor: default;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.serve-lane {
|
2026-04-16 16:49:02 +08:00
|
|
|
position: relative;
|
2026-04-15 22:56:50 +08:00
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 32px auto 1fr;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
min-height: 46px;
|
|
|
|
|
width: min(100%, 440px);
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
padding: 8px 10px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
text-align: left;
|
2026-04-16 08:53:05 +08:00
|
|
|
color: #f8f4ea;
|
|
|
|
|
background: rgba(255, 248, 232, 0.12);
|
|
|
|
|
box-shadow: inset 0 0 0 1px rgba(255, 236, 202, 0.12);
|
|
|
|
|
transition:
|
|
|
|
|
transform 0.16s ease,
|
|
|
|
|
box-shadow 0.16s ease,
|
|
|
|
|
background 0.16s ease;
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.serve-lane:disabled {
|
|
|
|
|
cursor: default;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 08:53:05 +08:00
|
|
|
.serve-lane:hover:not(:disabled) {
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
background: rgba(255, 248, 232, 0.18);
|
|
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(255, 236, 202, 0.22),
|
|
|
|
|
0 10px 18px rgba(8, 47, 73, 0.12);
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 16:49:02 +08:00
|
|
|
.serve-lane-prompt {
|
|
|
|
|
background: rgba(255, 248, 232, 0.12);
|
|
|
|
|
box-shadow: inset 0 0 0 1px rgba(255, 236, 202, 0.12);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.serve-lane-arrow {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.serve-lane small {
|
|
|
|
|
justify-self: end;
|
2026-04-16 08:53:05 +08:00
|
|
|
color: rgba(248, 244, 234, 0.72);
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-16 16:49:02 +08:00
|
|
|
.serve-lane-prompt > span:nth-of-type(2) {
|
|
|
|
|
color: #f7ffbe;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
text-shadow:
|
|
|
|
|
0 0 12px rgba(235, 248, 164, 0.5),
|
|
|
|
|
0 0 22px rgba(235, 248, 164, 0.24);
|
|
|
|
|
animation: serve-label-pulse 0.9s ease-in-out infinite;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.serve-lane-locked {
|
2026-04-16 08:53:05 +08:00
|
|
|
box-shadow: inset 0 0 0 1px rgba(214, 225, 100, 0.42);
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.serve-lane-box {
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
border-radius: 4px;
|
2026-04-16 08:53:05 +08:00
|
|
|
background: linear-gradient(180deg, #fff8e8, #f0dfbd);
|
2026-04-16 16:49:02 +08:00
|
|
|
box-shadow: inset 0 0 0 1px rgba(195, 154, 88, 0.22);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.serve-lane-box-checked {
|
|
|
|
|
position: relative;
|
|
|
|
|
background: linear-gradient(180deg, #ebf8a4, #d6e164);
|
|
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(111, 128, 27, 0.26),
|
|
|
|
|
0 0 0 1px rgba(214, 225, 100, 0.14);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.serve-lane-box-checked::after {
|
|
|
|
|
content: '✓';
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
color: #38501f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes serve-label-pulse {
|
|
|
|
|
0%,
|
|
|
|
|
100% {
|
|
|
|
|
transform: scale(1);
|
|
|
|
|
opacity: 0.82;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
50% {
|
|
|
|
|
transform: scale(1.08);
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.score-panel-surface {
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
min-height: 172px;
|
|
|
|
|
border: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
cursor: default;
|
|
|
|
|
transition:
|
|
|
|
|
transform 0.16s ease,
|
|
|
|
|
box-shadow 0.16s ease;
|
|
|
|
|
background:
|
2026-04-16 08:53:05 +08:00
|
|
|
linear-gradient(transparent 0 40%, rgba(11, 39, 34, 0.18) 40% 60%, transparent 60% 100%),
|
|
|
|
|
linear-gradient(90deg, transparent 0 40%, rgba(11, 39, 34, 0.18) 40% 60%, transparent 60% 100%),
|
|
|
|
|
linear-gradient(180deg, rgba(255, 248, 232, 0.2), rgba(255, 248, 232, 0.08)),
|
|
|
|
|
rgba(245, 237, 221, 0.96);
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.score-panel-surface-live {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.score-panel-surface-live:hover {
|
|
|
|
|
transform: translateY(-1px);
|
2026-04-16 08:53:05 +08:00
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 2px rgba(236, 193, 112, 0.44),
|
|
|
|
|
0 10px 20px rgba(8, 47, 73, 0.12);
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.score-panel-value {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: clamp(4.4rem, 11vw, 7.2rem);
|
|
|
|
|
line-height: 1;
|
2026-04-16 08:53:05 +08:00
|
|
|
color: #0d544a;
|
|
|
|
|
text-shadow: 0 2px 0 rgba(255, 255, 255, 0.42);
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scoreboard-center-banner {
|
|
|
|
|
display: grid;
|
|
|
|
|
justify-items: center;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
padding: 2px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scoreboard-center-banner p {
|
|
|
|
|
font-size: clamp(1.5rem, 3vw, 2.3rem);
|
2026-04-16 08:53:05 +08:00
|
|
|
color: #fff7e9;
|
2026-04-15 22:56:50 +08:00
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scoreboard-center-banner small {
|
|
|
|
|
font-size: 0.92rem;
|
2026-04-16 08:53:05 +08:00
|
|
|
color: rgba(255, 247, 233, 0.76);
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scoreboard-rail {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
align-content: start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rail-icon-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rail-square-button {
|
|
|
|
|
min-height: 52px;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font: inherit;
|
2026-04-16 08:53:05 +08:00
|
|
|
color: #5b2f13;
|
|
|
|
|
background: linear-gradient(180deg, #fff8e8, #f2d9a3);
|
|
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(199, 155, 83, 0.35),
|
|
|
|
|
0 8px 18px rgba(8, 47, 73, 0.14);
|
|
|
|
|
transition:
|
|
|
|
|
transform 0.16s ease,
|
|
|
|
|
box-shadow 0.16s ease,
|
|
|
|
|
filter 0.16s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rail-square-button:hover {
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(199, 155, 83, 0.45),
|
|
|
|
|
0 12px 20px rgba(8, 47, 73, 0.18);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rail-square-button:active {
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
filter: brightness(0.98);
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rail-clock {
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
min-height: 68px;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
font-family: var(--mono);
|
2026-04-15 16:55:54 +08:00
|
|
|
font-size: 1.7rem;
|
2026-04-16 08:53:05 +08:00
|
|
|
color: #fff7e9;
|
|
|
|
|
background:
|
|
|
|
|
radial-gradient(circle at top right, rgba(255, 205, 96, 0.16), transparent 28%),
|
|
|
|
|
linear-gradient(145deg, rgba(8, 47, 73, 0.97), rgba(10, 96, 84, 0.93));
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rail-pill {
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
padding: 14px 14px;
|
|
|
|
|
cursor: pointer;
|
2026-04-16 20:35:31 +08:00
|
|
|
user-select: none;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
|
touch-action: manipulation;
|
2026-04-15 22:56:50 +08:00
|
|
|
font: inherit;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
color: #4a2e1d;
|
|
|
|
|
background: linear-gradient(180deg, #fff0c7, #f8c870);
|
2026-04-16 08:53:05 +08:00
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(199, 155, 83, 0.28),
|
|
|
|
|
0 10px 18px rgba(8, 47, 73, 0.14);
|
|
|
|
|
transition:
|
|
|
|
|
transform 0.16s ease,
|
|
|
|
|
box-shadow 0.16s ease,
|
|
|
|
|
filter 0.16s ease;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 20:06:26 +08:00
|
|
|
.rail-pill-hold-wrap {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 8px;
|
2026-04-16 20:35:31 +08:00
|
|
|
user-select: none;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-webkit-touch-callout: none;
|
2026-04-16 20:06:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rail-pill-hold-wrap-active {
|
|
|
|
|
filter: drop-shadow(0 12px 20px rgba(217, 90, 68, 0.2));
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 08:53:05 +08:00
|
|
|
.rail-pill:hover {
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(199, 155, 83, 0.34),
|
|
|
|
|
0 14px 22px rgba(8, 47, 73, 0.18);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rail-pill:active {
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
filter: brightness(0.98);
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rail-pill-danger {
|
|
|
|
|
color: #fff;
|
2026-04-16 08:53:05 +08:00
|
|
|
background: linear-gradient(180deg, #d95a44, #b53a28);
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-16 20:06:26 +08:00
|
|
|
.rail-pill-active-hold {
|
|
|
|
|
transform: translateY(1px) scale(0.99);
|
|
|
|
|
filter: brightness(1.08) saturate(1.08);
|
|
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(255, 227, 214, 0.5),
|
|
|
|
|
inset 0 12px 18px rgba(255, 255, 255, 0.1),
|
|
|
|
|
0 0 0 4px rgba(255, 224, 194, 0.2),
|
|
|
|
|
0 14px 26px rgba(181, 58, 40, 0.28);
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.rail-pill-muted {
|
|
|
|
|
color: #4d3a29;
|
|
|
|
|
background: linear-gradient(180deg, #f7f2e8, #e0d6c5);
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 20:06:26 +08:00
|
|
|
.rail-hold-progress {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 8px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
background: rgba(255, 240, 199, 0.32);
|
|
|
|
|
box-shadow: inset 0 0 0 1px rgba(255, 237, 208, 0.12);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rail-hold-progress-bar {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
transform-origin: left center;
|
|
|
|
|
background: linear-gradient(90deg, #ffe9a8, #fff7d0, #ffffff);
|
|
|
|
|
box-shadow: 0 0 12px rgba(255, 246, 203, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 17:11:11 +08:00
|
|
|
.voice-settings-overlay {
|
|
|
|
|
position: fixed;
|
|
|
|
|
inset: 0;
|
|
|
|
|
z-index: 75;
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
padding: 18px;
|
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
|
backdrop-filter: blur(6px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.voice-settings-panel {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: min(420px, 100%);
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 14px;
|
|
|
|
|
padding: 24px 20px 20px;
|
|
|
|
|
border-radius: 24px;
|
|
|
|
|
background: linear-gradient(180deg, #fff8e8, #ffe5ad);
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 0 0 4px rgba(255, 255, 255, 0.18),
|
|
|
|
|
inset 0 0 0 2px rgba(200, 140, 46, 0.45);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.voice-settings-close {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 10px;
|
|
|
|
|
right: 10px;
|
|
|
|
|
width: 44px;
|
|
|
|
|
height: 44px;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font: inherit;
|
|
|
|
|
font-size: 1.6rem;
|
|
|
|
|
color: #b34e3a;
|
|
|
|
|
background: linear-gradient(180deg, #ffe5bf, #f0bd7c);
|
|
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(199, 125, 63, 0.34),
|
|
|
|
|
0 10px 18px rgba(8, 47, 73, 0.16);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.voice-setting-row,
|
|
|
|
|
.voice-setting-slider {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
padding: 14px 16px;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
background: rgba(255, 249, 238, 0.94);
|
|
|
|
|
box-shadow: inset 0 0 0 1px rgba(199, 155, 83, 0.12);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.voice-setting-row {
|
|
|
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.voice-setting-row input[type='checkbox'] {
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
accent-color: #0f6a5d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.voice-setting-slider strong {
|
|
|
|
|
justify-self: end;
|
|
|
|
|
color: #5b2f13;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.voice-setting-slider input[type='range'] {
|
|
|
|
|
width: 100%;
|
|
|
|
|
accent-color: #0f6a5d;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.team-picker-overlay {
|
|
|
|
|
position: fixed;
|
|
|
|
|
inset: 0;
|
|
|
|
|
z-index: 60;
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
2026-04-16 10:19:23 +08:00
|
|
|
padding: 12px;
|
2026-04-15 22:56:50 +08:00
|
|
|
background: rgba(0, 0, 0, 0.52);
|
|
|
|
|
backdrop-filter: blur(8px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-shell {
|
|
|
|
|
position: relative;
|
2026-04-16 10:19:23 +08:00
|
|
|
width: min(980px, 100%);
|
|
|
|
|
max-height: calc(100dvh - 24px);
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-close {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -12px;
|
|
|
|
|
right: 8px;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
width: 68px;
|
|
|
|
|
height: 68px;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font: inherit;
|
|
|
|
|
font-size: 2.4rem;
|
|
|
|
|
color: #b34e3a;
|
|
|
|
|
background: linear-gradient(180deg, #ffe5bf, #f0bd7c);
|
2026-04-16 08:53:05 +08:00
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(199, 125, 63, 0.34),
|
|
|
|
|
0 14px 26px rgba(8, 47, 73, 0.2);
|
|
|
|
|
transition:
|
|
|
|
|
transform 0.16s ease,
|
|
|
|
|
box-shadow 0.16s ease,
|
|
|
|
|
filter 0.16s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-close:hover {
|
|
|
|
|
transform: translateY(-1px) scale(1.01);
|
|
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(199, 125, 63, 0.42),
|
|
|
|
|
0 18px 30px rgba(8, 47, 73, 0.24);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-close:active {
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
filter: brightness(0.98);
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-ribbon {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -24px;
|
|
|
|
|
left: 34px;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
padding: 16px 24px;
|
|
|
|
|
border-radius: 24px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
background: rgba(0, 0, 0, 0.78);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-layout {
|
|
|
|
|
display: grid;
|
2026-04-16 10:19:23 +08:00
|
|
|
grid-template-columns: minmax(0, 1fr) 260px;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
padding: 22px 16px 16px;
|
|
|
|
|
border-radius: 28px;
|
2026-04-15 22:56:50 +08:00
|
|
|
background: rgba(20, 10, 6, 0.18);
|
2026-04-16 10:19:23 +08:00
|
|
|
max-height: calc(100dvh - 52px);
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-panel {
|
|
|
|
|
display: grid;
|
2026-04-16 10:19:23 +08:00
|
|
|
gap: 12px;
|
|
|
|
|
padding: 14px;
|
|
|
|
|
border-radius: 22px;
|
2026-04-15 22:56:50 +08:00
|
|
|
background: linear-gradient(180deg, #fff8e8, #ffe5ad);
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 0 0 4px rgba(255, 255, 255, 0.18),
|
|
|
|
|
inset 0 0 0 2px rgba(200, 140, 46, 0.45);
|
2026-04-16 10:19:23 +08:00
|
|
|
min-height: 0;
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-title {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-04-16 10:19:23 +08:00
|
|
|
gap: 10px;
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-count {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2026-04-16 10:19:23 +08:00
|
|
|
min-width: 72px;
|
|
|
|
|
min-height: 46px;
|
|
|
|
|
padding: 0 14px;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
font-size: 1.25rem;
|
2026-04-15 22:56:50 +08:00
|
|
|
color: #4a2e1d;
|
|
|
|
|
background: linear-gradient(180deg, #f5d89f, #ecc170);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-title p {
|
2026-04-16 10:19:23 +08:00
|
|
|
margin-top: 2px;
|
|
|
|
|
font-size: 0.84rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-config-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-start;
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-16 08:53:05 +08:00
|
|
|
.team-picker-config {
|
|
|
|
|
display: grid;
|
2026-04-16 10:19:23 +08:00
|
|
|
gap: 6px;
|
2026-04-16 08:53:05 +08:00
|
|
|
color: #4a2e1d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-config span {
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 10:19:23 +08:00
|
|
|
.team-picker-config-compact {
|
|
|
|
|
grid-template-columns: auto auto;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-config-compact span {
|
|
|
|
|
font-size: 0.92rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 08:53:05 +08:00
|
|
|
.team-picker-score-input {
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 140px;
|
|
|
|
|
padding: 12px 14px;
|
|
|
|
|
border: 1px solid rgba(124, 98, 61, 0.22);
|
|
|
|
|
border-radius: 14px;
|
|
|
|
|
background: rgba(255, 255, 255, 0.92);
|
|
|
|
|
color: #2e231b;
|
|
|
|
|
font: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 10:19:23 +08:00
|
|
|
.team-picker-score-input-compact {
|
|
|
|
|
width: 72px;
|
|
|
|
|
max-width: 72px;
|
|
|
|
|
padding: 8px 10px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.team-picker-list {
|
|
|
|
|
display: grid;
|
2026-04-16 10:19:23 +08:00
|
|
|
gap: 10px;
|
|
|
|
|
max-height: min(48dvh, 430px);
|
2026-04-15 22:56:50 +08:00
|
|
|
overflow: auto;
|
2026-04-16 10:19:23 +08:00
|
|
|
padding-right: 4px;
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-option {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 34px minmax(0, 1fr);
|
2026-04-16 10:19:23 +08:00
|
|
|
gap: 10px;
|
2026-04-15 22:56:50 +08:00
|
|
|
align-items: center;
|
2026-04-16 10:19:23 +08:00
|
|
|
padding: 12px 12px;
|
2026-04-15 22:56:50 +08:00
|
|
|
border: 1px solid rgba(124, 98, 61, 0.18);
|
2026-04-16 10:19:23 +08:00
|
|
|
border-radius: 14px;
|
2026-04-15 22:56:50 +08:00
|
|
|
cursor: pointer;
|
|
|
|
|
text-align: left;
|
|
|
|
|
color: #2e231b;
|
|
|
|
|
background: rgba(255, 249, 238, 0.92);
|
2026-04-16 08:53:05 +08:00
|
|
|
transition:
|
|
|
|
|
transform 0.16s ease,
|
|
|
|
|
box-shadow 0.16s ease,
|
|
|
|
|
border-color 0.16s ease,
|
|
|
|
|
background 0.16s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-option:hover {
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
border-color: rgba(199, 155, 83, 0.34);
|
|
|
|
|
box-shadow: 0 12px 22px rgba(8, 47, 73, 0.08);
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-option-active {
|
|
|
|
|
background: rgba(255, 255, 255, 0.98);
|
|
|
|
|
box-shadow: 0 10px 20px rgba(147, 104, 35, 0.12);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-checkbox {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
border: 1px solid rgba(100, 83, 61, 0.28);
|
|
|
|
|
background: rgba(255, 255, 255, 0.88);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-option-active .team-picker-checkbox {
|
|
|
|
|
color: #fff;
|
|
|
|
|
background: linear-gradient(180deg, #ffbf3b, #f0a21a);
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.team-picker-option strong,
|
2026-04-16 10:19:23 +08:00
|
|
|
.preset-team-card strong {
|
2026-04-15 16:55:54 +08:00
|
|
|
display: block;
|
2026-04-16 10:19:23 +08:00
|
|
|
font-size: 1.05rem;
|
2026-04-15 22:56:50 +08:00
|
|
|
line-height: 1.2;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.team-picker-option small,
|
2026-04-16 10:19:23 +08:00
|
|
|
.preset-team-card small,
|
2026-04-15 22:56:50 +08:00
|
|
|
.picker-side-hint {
|
|
|
|
|
display: block;
|
2026-04-16 10:19:23 +08:00
|
|
|
margin-top: 4px;
|
2026-04-15 22:56:50 +08:00
|
|
|
color: #7b6148;
|
2026-04-16 10:19:23 +08:00
|
|
|
font-size: 0.82rem;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.team-picker-actions {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
2026-04-16 10:19:23 +08:00
|
|
|
gap: 10px;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.team-picker-ghost,
|
|
|
|
|
.team-picker-confirm,
|
|
|
|
|
.team-picker-clear {
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 999px;
|
2026-04-16 10:19:23 +08:00
|
|
|
padding: 12px 14px;
|
2026-04-15 22:56:50 +08:00
|
|
|
cursor: pointer;
|
|
|
|
|
font: inherit;
|
2026-04-16 08:53:05 +08:00
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(199, 155, 83, 0.24),
|
|
|
|
|
0 10px 18px rgba(8, 47, 73, 0.12);
|
|
|
|
|
transition:
|
|
|
|
|
transform 0.16s ease,
|
|
|
|
|
box-shadow 0.16s ease,
|
|
|
|
|
filter 0.16s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-ghost:hover,
|
|
|
|
|
.team-picker-confirm:hover:not(:disabled),
|
|
|
|
|
.team-picker-clear:hover {
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(199, 155, 83, 0.34),
|
|
|
|
|
0 14px 22px rgba(8, 47, 73, 0.16);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-ghost:active,
|
|
|
|
|
.team-picker-confirm:active:not(:disabled),
|
|
|
|
|
.team-picker-clear:active {
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
filter: brightness(0.98);
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.team-picker-ghost {
|
|
|
|
|
color: #4d3a29;
|
|
|
|
|
background: linear-gradient(180deg, #f7f2e8, #e0d6c5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-confirm {
|
|
|
|
|
color: #4a2e1d;
|
|
|
|
|
background: linear-gradient(180deg, #ebf8a4, #d6e164);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-confirm:disabled {
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
opacity: 0.55;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-16 10:19:23 +08:00
|
|
|
.preset-team-block {
|
2026-04-15 22:56:50 +08:00
|
|
|
display: grid;
|
2026-04-16 10:19:23 +08:00
|
|
|
gap: 10px;
|
|
|
|
|
min-height: 0;
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-16 10:19:23 +08:00
|
|
|
.preset-team-head {
|
2026-04-15 22:56:50 +08:00
|
|
|
display: grid;
|
2026-04-16 10:19:23 +08:00
|
|
|
gap: 2px;
|
|
|
|
|
color: #4a2e1d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preset-team-head small {
|
|
|
|
|
color: #7b6148;
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preset-team-list {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
max-height: min(44dvh, 360px);
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preset-team-card {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 44px minmax(0, 1fr);
|
|
|
|
|
gap: 10px;
|
2026-04-15 22:56:50 +08:00
|
|
|
align-items: center;
|
2026-04-16 10:19:23 +08:00
|
|
|
padding: 10px;
|
2026-04-15 22:56:50 +08:00
|
|
|
border: 1px solid rgba(124, 98, 61, 0.16);
|
2026-04-16 10:19:23 +08:00
|
|
|
border-radius: 14px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
text-align: left;
|
|
|
|
|
background: rgba(255, 249, 238, 0.92);
|
|
|
|
|
transition:
|
|
|
|
|
transform 0.16s ease,
|
|
|
|
|
box-shadow 0.16s ease,
|
|
|
|
|
border-color 0.16s ease;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-16 10:19:23 +08:00
|
|
|
.preset-team-card:hover {
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
border-color: rgba(199, 155, 83, 0.34);
|
|
|
|
|
box-shadow: 0 12px 22px rgba(8, 47, 73, 0.08);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preset-team-card-active {
|
|
|
|
|
background: rgba(255, 255, 255, 0.98);
|
|
|
|
|
box-shadow: 0 10px 20px rgba(147, 104, 35, 0.12);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preset-team-index {
|
2026-04-15 22:56:50 +08:00
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2026-04-16 10:19:23 +08:00
|
|
|
width: 44px;
|
|
|
|
|
height: 44px;
|
2026-04-15 22:56:50 +08:00
|
|
|
border-radius: 999px;
|
2026-04-16 10:19:23 +08:00
|
|
|
font-size: 1.1rem;
|
2026-04-15 22:56:50 +08:00
|
|
|
color: #5b2f13;
|
|
|
|
|
background: linear-gradient(180deg, #ffc84d, #f2a316);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-clear {
|
|
|
|
|
color: #fff;
|
|
|
|
|
background: linear-gradient(180deg, #f7a17e, #ed774d);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finish-dialog-overlay {
|
|
|
|
|
position: fixed;
|
|
|
|
|
inset: 0;
|
|
|
|
|
z-index: 70;
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
padding: 18px;
|
|
|
|
|
background: rgba(0, 0, 0, 0.56);
|
|
|
|
|
backdrop-filter: blur(6px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finish-dialog {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: min(460px, 100%);
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
padding: 24px 20px 20px;
|
|
|
|
|
border-radius: 24px;
|
|
|
|
|
background: linear-gradient(180deg, #fff8e8, #ffe5ad);
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 0 0 4px rgba(255, 255, 255, 0.18),
|
|
|
|
|
inset 0 0 0 2px rgba(200, 140, 46, 0.45);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finish-dialog-close {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 10px;
|
|
|
|
|
right: 10px;
|
|
|
|
|
width: 48px;
|
|
|
|
|
height: 48px;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font: inherit;
|
|
|
|
|
font-size: 1.8rem;
|
|
|
|
|
color: #b34e3a;
|
|
|
|
|
background: linear-gradient(180deg, #ffe5bf, #f0bd7c);
|
2026-04-16 08:53:05 +08:00
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(199, 125, 63, 0.34),
|
|
|
|
|
0 10px 18px rgba(8, 47, 73, 0.16);
|
|
|
|
|
transition:
|
|
|
|
|
transform 0.16s ease,
|
|
|
|
|
box-shadow 0.16s ease,
|
|
|
|
|
filter 0.16s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finish-dialog-close:hover:not(:disabled) {
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(199, 125, 63, 0.42),
|
|
|
|
|
0 14px 22px rgba(8, 47, 73, 0.2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finish-dialog-close:active:not(:disabled) {
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
filter: brightness(0.98);
|
2026-04-15 22:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finish-score {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
|
|
|
|
|
gap: 10px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
border-radius: 18px;
|
|
|
|
|
background: rgba(255, 249, 238, 0.94);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finish-score div {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
justify-items: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finish-score strong {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 2.6rem;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
color: #16342f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finish-score span {
|
|
|
|
|
color: #5f4a35;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finish-score-divider {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 2rem;
|
|
|
|
|
color: #70543c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finish-dialog-copy {
|
|
|
|
|
color: #5f4a35;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finish-dialog-error {
|
|
|
|
|
padding: 12px 14px;
|
|
|
|
|
border-radius: 14px;
|
|
|
|
|
color: #7a1d2a;
|
|
|
|
|
background: rgba(255, 224, 230, 0.95);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finish-dialog-actions {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 23:04:16 +08:00
|
|
|
.history-modal-overlay {
|
|
|
|
|
position: fixed;
|
|
|
|
|
inset: 0;
|
|
|
|
|
z-index: 70;
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
padding: 18px;
|
|
|
|
|
background: rgba(0, 0, 0, 0.56);
|
|
|
|
|
backdrop-filter: blur(6px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-modal {
|
2026-04-16 15:23:09 +08:00
|
|
|
position: relative;
|
2026-04-15 23:04:16 +08:00
|
|
|
width: min(680px, 100%);
|
|
|
|
|
display: grid;
|
2026-04-16 18:14:56 +08:00
|
|
|
gap: 10px;
|
|
|
|
|
padding: 18px 18px 16px;
|
2026-04-15 23:04:16 +08:00
|
|
|
border-radius: 24px;
|
|
|
|
|
background: linear-gradient(180deg, #fff8e8, #ffe5ad);
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 0 0 4px rgba(255, 255, 255, 0.18),
|
|
|
|
|
inset 0 0 0 2px rgba(200, 140, 46, 0.45);
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 15:23:09 +08:00
|
|
|
.history-modal-close {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 10px;
|
|
|
|
|
right: 10px;
|
|
|
|
|
width: 44px;
|
|
|
|
|
height: 44px;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font: inherit;
|
|
|
|
|
font-size: 1.6rem;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
color: #b34e3a;
|
|
|
|
|
background: linear-gradient(180deg, #ffe5bf, #f0bd7c);
|
|
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(199, 125, 63, 0.34),
|
|
|
|
|
0 10px 18px rgba(8, 47, 73, 0.16);
|
|
|
|
|
transition:
|
|
|
|
|
transform 0.16s ease,
|
|
|
|
|
box-shadow 0.16s ease,
|
|
|
|
|
filter 0.16s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-modal-close:hover {
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
box-shadow:
|
|
|
|
|
inset 0 0 0 1px rgba(199, 125, 63, 0.42),
|
|
|
|
|
0 14px 22px rgba(8, 47, 73, 0.2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-modal-close:active {
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
filter: brightness(0.98);
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 23:04:16 +08:00
|
|
|
.history-modal-score {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
|
2026-04-16 18:14:56 +08:00
|
|
|
gap: 8px;
|
2026-04-15 23:04:16 +08:00
|
|
|
align-items: center;
|
2026-04-16 18:14:56 +08:00
|
|
|
padding: 10px 12px;
|
|
|
|
|
border-radius: 14px;
|
2026-04-15 23:04:16 +08:00
|
|
|
background: rgba(255, 249, 238, 0.94);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-modal-score div {
|
|
|
|
|
display: grid;
|
2026-04-16 18:14:56 +08:00
|
|
|
gap: 2px;
|
2026-04-15 23:04:16 +08:00
|
|
|
justify-items: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-modal-score strong {
|
|
|
|
|
font-family: var(--mono);
|
2026-04-16 18:14:56 +08:00
|
|
|
font-size: 1.9rem;
|
2026-04-15 23:04:16 +08:00
|
|
|
line-height: 1;
|
|
|
|
|
color: #16342f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-modal-score span {
|
2026-04-16 18:14:56 +08:00
|
|
|
font-size: 0.88rem;
|
2026-04-15 23:04:16 +08:00
|
|
|
color: #5f4a35;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-modal-score-divider {
|
|
|
|
|
font-family: var(--mono);
|
2026-04-16 18:14:56 +08:00
|
|
|
font-size: 1.3rem;
|
2026-04-15 23:04:16 +08:00
|
|
|
color: #70543c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-modal-summary {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
2026-04-16 18:14:56 +08:00
|
|
|
gap: 8px;
|
|
|
|
|
font-size: 0.86rem;
|
2026-04-15 23:04:16 +08:00
|
|
|
color: #5f4a35;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-replay-list {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
max-height: min(50vh, 480px);
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-replay-row {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 108px 92px 92px minmax(0, 1fr);
|
|
|
|
|
gap: 10px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 12px 14px;
|
|
|
|
|
border-radius: 14px;
|
|
|
|
|
background: rgba(255, 249, 238, 0.92);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-replay-empty {
|
|
|
|
|
padding: 12px 14px;
|
|
|
|
|
border-radius: 14px;
|
|
|
|
|
color: #5f4a35;
|
|
|
|
|
background: rgba(255, 249, 238, 0.92);
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.inline-link {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
width: fit-content;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 980px) {
|
|
|
|
|
.topbar,
|
|
|
|
|
.page-grid,
|
|
|
|
|
.summary-grid,
|
|
|
|
|
.double-grid,
|
|
|
|
|
.history-meta,
|
|
|
|
|
.selection-toolbar {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar {
|
|
|
|
|
display: grid;
|
|
|
|
|
align-items: start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel-heading,
|
|
|
|
|
.group-head,
|
|
|
|
|
.history-head {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 14:37:32 +08:00
|
|
|
.group-head-compact {
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group-head-compact .group-actions {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.scoreboard-screen {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scoreboard-rail {
|
|
|
|
|
grid-template-columns: minmax(0, 1fr) 140px 160px;
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scoreboard-team-head {
|
|
|
|
|
grid-template-columns: minmax(0, 1fr) 62px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-head-main {
|
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
|
}
|
2026-04-16 10:19:23 +08:00
|
|
|
|
|
|
|
|
.team-picker-layout {
|
|
|
|
|
grid-template-columns: minmax(0, 1fr) 220px;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
}
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 720px) {
|
2026-04-16 19:57:08 +08:00
|
|
|
.pwa-update-toast {
|
|
|
|
|
gap: 10px;
|
|
|
|
|
bottom: 12px;
|
|
|
|
|
padding: 12px 12px 12px 14px;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pwa-update-copy strong {
|
|
|
|
|
font-size: 0.92rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pwa-update-copy span {
|
|
|
|
|
font-size: 0.78rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pwa-update-button {
|
|
|
|
|
min-width: 84px;
|
|
|
|
|
padding: 9px 12px;
|
|
|
|
|
font-size: 0.84rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 16:55:54 +08:00
|
|
|
.app-shell {
|
2026-04-15 22:56:50 +08:00
|
|
|
width: min(100% - 14px, 1240px);
|
|
|
|
|
padding: 14px 0 24px;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.app-shell-scoreboard {
|
|
|
|
|
width: min(100% - 10px, 1240px);
|
|
|
|
|
padding-top: 10px;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.panel {
|
|
|
|
|
padding: 16px;
|
|
|
|
|
border-radius: 18px;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.topbar {
|
|
|
|
|
gap: 10px;
|
|
|
|
|
margin-bottom: 10px;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.branding h1 {
|
|
|
|
|
font-size: 1.35rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.intro-copy {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-pill,
|
|
|
|
|
.inline-link {
|
|
|
|
|
padding: 9px 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 12:37:38 +08:00
|
|
|
.selection-toolbar {
|
|
|
|
|
gap: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 14:37:32 +08:00
|
|
|
.selection-toolbar > .field {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 12:37:38 +08:00
|
|
|
.button-stack {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.field input[type='date'] {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
font-size: 16px;
|
2026-04-16 14:37:32 +08:00
|
|
|
overflow: hidden;
|
2026-04-16 12:37:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.floating-status-bubble {
|
|
|
|
|
bottom: 12px;
|
|
|
|
|
min-width: min(88vw, 320px);
|
|
|
|
|
max-width: 92vw;
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
font-size: 0.92rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 14:37:32 +08:00
|
|
|
.group-head-compact {
|
|
|
|
|
gap: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group-head-compact h3 {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group-head-compact .inline-link {
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.scoreboard-court {
|
|
|
|
|
gap: 10px;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 16:54:59 +08:00
|
|
|
.streak-banner {
|
|
|
|
|
top: 12%;
|
|
|
|
|
min-width: min(92vw, 360px);
|
|
|
|
|
padding: 14px 18px;
|
|
|
|
|
border-radius: 22px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.streak-banner strong {
|
|
|
|
|
font-size: clamp(1.6rem, 8vw, 2.4rem);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.streak-banner small {
|
|
|
|
|
font-size: 0.88rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.victory-banner {
|
|
|
|
|
top: 14%;
|
|
|
|
|
min-width: min(92vw, 360px);
|
|
|
|
|
padding: 16px 18px;
|
|
|
|
|
border-radius: 22px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.victory-banner strong {
|
|
|
|
|
font-size: clamp(1.8rem, 9vw, 2.8rem);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.victory-banner small,
|
|
|
|
|
.victory-banner em {
|
|
|
|
|
font-size: 0.88rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 17:11:11 +08:00
|
|
|
.voice-settings-panel {
|
|
|
|
|
padding: 20px 14px 14px;
|
|
|
|
|
border-radius: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.scoreboard-team-head {
|
|
|
|
|
grid-template-columns: minmax(0, 1fr) 54px;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-head-main {
|
|
|
|
|
gap: 6px;
|
|
|
|
|
min-height: 52px;
|
|
|
|
|
padding: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scoreboard-name-chip {
|
|
|
|
|
gap: 6px;
|
|
|
|
|
min-height: 38px;
|
|
|
|
|
padding: 4px 6px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 16:49:02 +08:00
|
|
|
.serve-lane-arrow {
|
|
|
|
|
left: 52px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.team-number {
|
|
|
|
|
width: 28px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
flex-basis: 28px;
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scoreboard-name-chip strong {
|
|
|
|
|
font-size: clamp(0.82rem, 4vw, 1.1rem);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-icon-button {
|
|
|
|
|
min-height: 32px;
|
|
|
|
|
font-size: 1rem;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.serve-lane {
|
|
|
|
|
grid-template-columns: 28px auto;
|
|
|
|
|
min-height: 38px;
|
|
|
|
|
padding: 6px 8px;
|
|
|
|
|
font-size: 0.92rem;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.serve-lane small {
|
|
|
|
|
grid-column: 1 / -1;
|
2026-04-15 16:55:54 +08:00
|
|
|
justify-self: start;
|
2026-04-15 22:56:50 +08:00
|
|
|
font-size: 0.78rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.score-panel-surface {
|
|
|
|
|
min-height: 112px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.score-panel-value {
|
|
|
|
|
font-size: clamp(3.5rem, 18vw, 5.4rem);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scoreboard-center-banner {
|
|
|
|
|
gap: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scoreboard-center-banner p {
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scoreboard-center-banner small {
|
|
|
|
|
font-size: 0.78rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scoreboard-rail {
|
|
|
|
|
grid-template-columns: minmax(0, 1fr) 108px 118px;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rail-square-button {
|
|
|
|
|
min-height: 42px;
|
|
|
|
|
font-size: 0.95rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rail-clock {
|
|
|
|
|
min-height: 42px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rail-pill {
|
|
|
|
|
padding: 10px 8px;
|
|
|
|
|
font-size: 0.92rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 20:06:26 +08:00
|
|
|
.rail-pill-hold-wrap {
|
|
|
|
|
gap: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rail-hold-progress {
|
|
|
|
|
height: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.finish-dialog {
|
|
|
|
|
padding: 20px 14px 14px;
|
|
|
|
|
border-radius: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 23:04:16 +08:00
|
|
|
.history-modal {
|
2026-04-16 18:14:56 +08:00
|
|
|
gap: 8px;
|
|
|
|
|
padding: 14px 12px;
|
2026-04-15 23:04:16 +08:00
|
|
|
border-radius: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.finish-dialog-close {
|
|
|
|
|
width: 40px;
|
|
|
|
|
height: 40px;
|
|
|
|
|
font-size: 1.4rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finish-score {
|
|
|
|
|
padding: 12px 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finish-score strong {
|
|
|
|
|
font-size: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finish-dialog-actions {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 23:04:16 +08:00
|
|
|
.history-modal-score {
|
2026-04-16 18:14:56 +08:00
|
|
|
grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
|
|
|
|
|
gap: 6px;
|
|
|
|
|
padding: 8px 10px;
|
2026-04-15 23:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-modal-score-divider {
|
2026-04-16 18:14:56 +08:00
|
|
|
display: block;
|
2026-04-15 23:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-replay-row {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
gap: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-16 10:26:58 +08:00
|
|
|
.history-card-shell {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-delete-button {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-15 22:56:50 +08:00
|
|
|
.team-picker-ribbon {
|
|
|
|
|
left: 18px;
|
|
|
|
|
right: 90px;
|
2026-04-16 10:19:23 +08:00
|
|
|
top: -18px;
|
|
|
|
|
padding: 10px 16px;
|
|
|
|
|
border-radius: 18px;
|
|
|
|
|
font-size: 0.88rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-shell {
|
|
|
|
|
max-height: calc(100dvh - 12px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-layout {
|
|
|
|
|
grid-template-columns: minmax(0, 1fr) 156px;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
padding: 18px 10px 10px;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
max-height: calc(100dvh - 24px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-panel {
|
|
|
|
|
gap: 8px;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-title {
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-count {
|
|
|
|
|
min-width: 56px;
|
|
|
|
|
min-height: 38px;
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-title strong {
|
|
|
|
|
font-size: 0.96rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-title p {
|
|
|
|
|
font-size: 0.72rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-config-compact span {
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-score-input-compact {
|
|
|
|
|
width: 58px;
|
|
|
|
|
max-width: 58px;
|
|
|
|
|
padding: 6px 8px;
|
|
|
|
|
font-size: 0.88rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-list {
|
|
|
|
|
gap: 6px;
|
|
|
|
|
max-height: min(46dvh, 330px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-option {
|
|
|
|
|
grid-template-columns: 24px minmax(0, 1fr);
|
|
|
|
|
gap: 8px;
|
|
|
|
|
padding: 9px 8px;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-checkbox {
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-option strong,
|
|
|
|
|
.preset-team-card strong {
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-option small,
|
|
|
|
|
.preset-team-card small,
|
|
|
|
|
.picker-side-hint,
|
|
|
|
|
.preset-team-head small {
|
|
|
|
|
font-size: 0.72rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-actions {
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.team-picker-ghost,
|
|
|
|
|
.team-picker-confirm,
|
|
|
|
|
.team-picker-clear {
|
|
|
|
|
padding: 10px 10px;
|
|
|
|
|
font-size: 0.86rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preset-team-list {
|
|
|
|
|
gap: 6px;
|
|
|
|
|
max-height: min(42dvh, 300px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preset-team-card {
|
|
|
|
|
grid-template-columns: 34px minmax(0, 1fr);
|
|
|
|
|
gap: 8px;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preset-team-index {
|
|
|
|
|
width: 34px;
|
|
|
|
|
height: 34px;
|
|
|
|
|
font-size: 0.92rem;
|
2026-04-15 16:55:54 +08:00
|
|
|
}
|
|
|
|
|
}
|