2025-11-05 15:48:12 +09:00

404 lines
9.9 KiB
CSS

:root {
--bg: #0b0f14;
--card: #0f1520;
--text: #e6eef8;
--subtle: #9fb3c8;
--accent: #79c0ff;
--header-h: 56px;
}
* { box-sizing: border-box; }
html, body, #root {
height: 100%;
margin: 0;
background: radial-gradient(1200px 800px at 20% -10%, #12202f 0%, #0b0f14 40%),
radial-gradient(900px 600px at 80% 110%, #1a2740 0%, #0b0f14 40%);
color: var(--text);
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}
.app {
min-height: 100%;
display: grid;
place-items: center;
padding: 24px;
}
.appbar {
display:flex; align-items:center; justify-content:space-between;
margin-bottom: 12px;
}
/* Button container */
.burger{
display:grid; /* centers SVG */
place-items:center;
width:40px; height:40px; /* good touch target */
padding:0; line-height:0; /* no baseline artifacts */
border-radius:12px;
color:var(--text);
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.15);
cursor:pointer;
}
/* SVG itself */
.burger-icon{
display:block;
shape-rendering:geometricPrecision;
}
/* polish */
.burger:hover{ background:rgba(255,255,255,.12); }
.burger:focus-visible{ outline:2px solid var(--accent); outline-offset:2px; }
.brand { color: var(--text); text-decoration:none; font-weight:800; }
.drawer {
position:absolute; left:16px; top:56px; display:flex; flex-direction:column;
gap:8px; padding:12px; border-radius:12px; background:rgba(15,21,32,0.98);
border:1px solid rgba(255,255,255,0.12); box-shadow:0 20px 40px rgba(0,0,0,0.35);
transform: translateY(-12px) scale(0.98); opacity:0; pointer-events:none; transition:0.16s ease;
}
.drawer.open { transform:none; opacity:1; pointer-events:auto; }
.navlink { color:var(--text); text-decoration:none; font-weight:700; }
.navlink.active { color:var(--accent); }
.card {
background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
border: 1px solid rgba(255,255,255,0.08);
border-radius: 16px;
padding: 28px 32px;
box-shadow: 0 10px 30px rgba(0,0,0,0.25);
max-width: 720px;
width: 100%;
text-align: center;
container-type: inline-size;
position: relative;
isolation: isolate;
}
.h1 {
margin: 0 0 8px 0;
font-size: clamp(20px, 2.4vw, 28px);
font-weight: 600;
color: var(--text);
}
.subtle {
margin: 0 0 24px 0;
color: var(--subtle);
font-size: 14px;
}
.clock {
font-variant-numeric: tabular-nums;
letter-spacing: 1px; /* slightly lighter spacing for smaller size */
font-weight: 700;
font-size: clamp(20px, 5vw, 36px); /* smaller now */
line-height: 1.1;
}
.date {
margin-top: 12px;
color: var(--accent);
font-weight: 600;
font-size: clamp(14px, 2.5vw, 18px);
}
.footer {
margin-top: 20px;
color: var(--subtle);
font-size: 12px;
}
kbd {
padding: 2px 6px;
border-radius: 6px;
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.15);
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.timer {
margin-top: 8px;
font-variant-numeric: tabular-nums;
letter-spacing: 2px;
font-weight: 700;
font-size: clamp(40px, 10vw, 90px);
line-height: 1.05;
white-space: nowrap;
}
.timer-block {
display: grid;
gap: 16px;
justify-items: center;
text-align: center;
width: 100%;
}
.timer-meta {
display: grid;
gap: 4px;
}
.timer-status {
margin-top: 23px;
color: var(--subtle);
font-size: 12px;
}
.timer-sep {
white-space: nowrap;
}
.timer-season {
color: var(--subtle);
font-weight: 600;
font-size: clamp(12px, 2vw, 14px);
}
.timer-episode {
color: var(--text);
font-weight: 700;
font-size: clamp(14px, 3vw, 18px);
}
.timer-toprow {
display: flex;
gap: 12px;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
/* ====== Site chrome (outside card) ====== */
.site {
min-height: 100dvh;
position: relative;
/* push-mode: the content will slide right when sidebar is open */
}
.site-header {
position: fixed;
z-index: 50;
top: 0; left: 16px; right: 16px;
display: flex; gap: 12px; align-items: center;
height: var(--header-h);
}
.brand {
font-weight: 900;
color: var(--text);
text-decoration: none;
letter-spacing: 0.2px;
text-shadow: 0 1px 10px rgba(0,0,0,0.25);
}
/* Sidebar (full height, left) */
.sidebar {
position: fixed;
z-index: 40;
top: 0; left: 0; bottom: 0;
width: clamp(240px, 28vw, 320px);
backdrop-filter: blur(4px);
background: rgba(15,21,32,0.96);
border-right: 1px solid rgba(255,255,255,0.12);
transform: translateX(-100%);
transition: transform 180ms ease;
display: grid;
align-content: start;
padding: 70px 16px 16px; /* leave space under header */
}
.sidebar.open { transform: translateX(0); }
.sidebar-nav {
display: grid;
gap: 10px;
}
.navlink {
color: var(--text);
text-decoration: none;
font-weight: 800;
padding: 10px 12px;
border-radius: 10px;
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.10);
}
.navlink.active { color: var(--accent); border-color: rgba(121,192,255,0.6); }
/* Backdrop (for overlap mode, also clickable to close) */
.backdrop {
position: fixed;
inset: 0;
z-index: 30;
background: rgba(0,0,0,0.0);
opacity: 0;
pointer-events: none;
transition: opacity 180ms ease;
border: 0;
}
.backdrop.open {
background: rgba(0,0,0,0.35);
opacity: 1;
pointer-events: auto;
}
/* Main content wrapper; centers the card like before */
.site-content {
min-height: calc(100dvh - var(--header-h));
display: grid;
place-items: center;
padding: calc(var(--header-h) + 12px) 24px 32px;
}
/* ====== Card stays as you had ====== */
/* .card { ... } remains unchanged—already centered and relative */
.pill {
padding: 4px 10px;
border-radius: 999px;
font-weight: 700;
font-size: 12px;
border: 1px solid rgba(255,255,255,0.15);
}
.pill.running { background: rgba(0,255,128,0.12); }
.pill.waiting { background: rgba(255,255,0,0.10); }
.pill.ended { background: rgba(255,0,0,0.10); }
.timer-now {
display: inline-flex;
gap: 8px;
align-items: baseline;
}
.timer-now .muted { color: var(--subtle); font-size: 12px; }
.timer-now .now-digits {
font-variant-numeric: tabular-nums;
font-weight: 700;
font-size: clamp(14px, 2.5vw, 18px);
}
.timer-hero {
width: 100%;
display: flex;
align-items: baseline;
justify-content: center;
gap: 0.15em;
white-space: nowrap;
overflow: hidden;
font-variant-numeric: tabular-nums;
letter-spacing: 0.5px;
font-weight: 800;
font-size: clamp(24px, 13cqw, 88px);
line-height: 1.05;
}
.timer-hero .hero-sep { white-space: nowrap; }
.hero-sep { white-space: nowrap; font-size: 0.8em; }
.hero-number.elapsed { font-size: 1em; }
.hero-number.total { font-size: 0.66em; opacity: 0.9; }
.timer-hero.has-hours {
letter-spacing: 0.25px;
font-size: clamp(22px, 10.5cqw, 80px);
}
.timer-hero.has-hours .hero-number.total { font-size: 0.6em; }
.timer-hero.has-hours .hero-sep { font-size: 0.72em; }
/* Progress bar */
.progress {
position: relative;
width: min(100%, 640px);
height: 8px;
margin-inline: auto;
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.10);
border-radius: 999px;
overflow: hidden;
}
.progress-fill {
height: 100%;
width: 0%;
background: var(--accent);
transition: width 200ms linear;
}
.progress-fill.waiting { width: 0%; }
.progress-fill.ended { width: 100%; }
.timer-status {
color: var(--subtle);
font-size: 12px;
margin-top: -4px;
}
.countdown-overlay {
position: absolute;
inset: 0;
z-index: 999;
display: grid;
place-items: center;
background: rgba(0, 0, 0, 0.35);
backdrop-filter: blur(2px);
pointer-events: none;
}
.countdown-wrap {
text-align: center;
color: var(--text);
text-shadow: 0 6px 24px rgba(0,0,0,0.45);
animation: pop 180ms ease-out;
}
.countdown-number {
font-variant-numeric: tabular-nums;
font-weight: 900;
letter-spacing: 2px;
line-height: 0.95;
text-shadow: 0 8px 28px rgba(0,0,0,0.55);
font-size: clamp(48px, 26cqw, 220px);
}
.countdown-label {
margin-bottom: 8px;
font-size: clamp(12px, 2.2cqw, 22px);
font-weight: 700;
color: var(--subtle);
}
.card:has(.countdown-overlay) .timer-meta,
.card:has(.countdown-overlay) .timer-toprow,
.card:has(.countdown-overlay) .timer-hero,
.card:has(.countdown-overlay) .progress,
.card:has(.countdown-overlay) .timer-status {
filter: blur(1px) brightness(0.85);
}
.shows-page { display:grid; gap:12px; }
.shows-grid {
display:grid; gap:10px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
margin: 6px 0 8px;
}
.show-card {
text-align:left; padding:12px; border-radius:12px; cursor:pointer;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.12);
color: var(--text);
}
.show-card .title { font-weight:800; }
.show-card.selected { outline: 2px solid var(--accent); background: rgba(121,192,255,0.10); }
.form-row { display:flex; gap:8px; flex-wrap:wrap; align-items:center; justify-content:center; }
.input {
min-width: 220px; padding:10px 12px; border-radius:10px;
background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.15);
color: var(--text);
}
.primary {
padding:10px 14px; border-radius:10px; font-weight:800; cursor:pointer;
background: var(--accent); color:#0b0f14; border:none;
}
.primary:disabled { opacity:0.5; cursor:not-allowed; }
.footer a { text-decoration: underline; }
@keyframes pop {
from { transform: scale(0.98); opacity: 0.0; }
to { transform: scale(1); opacity: 1.0; }
}
@media (prefers-reduced-motion: reduce) {
.progress-fill { transition: none; }
.countdown-wrap {animation: none;}
}
@container (max-width: 420px) {
.timer-hero { font-size: clamp(22px, 11cqw, 72px); letter-spacing: 0.25px; }
.hero-number.total, .hero-sep { font-size: 0.62em; }
}
@container (max-width: 360px) {
.timer-hero { font-size: clamp(20px, 10cqw, 64px); letter-spacing: 0; }
}
@supports not (container-type: inline-size) {
.timer-hero { font-size: clamp(28px, 8vw, 96px); }
}