Source-Tag: v1.0.3 Manifest-SHA256: b7b09bf48f9e092ed8ad82f99c0319d6c3837d0a1549bd0cc4a374276c0f3896
33 lines
2.6 KiB
CSS
33 lines
2.6 KiB
CSS
:root { color-scheme: dark; --bg: #09040f; --panel: #170c22; --line: #62377d; --pink: #f45bd2; --cyan: #62e7ee; --text: #f5edf8; --muted: #b9a8c2; }
|
|
* { box-sizing: border-box; }
|
|
body { margin: 0; min-height: 100vh; background: radial-gradient(circle at 80% 0, #281139, transparent 42%), var(--bg); color: var(--text); font: 16px/1.5 "Atkinson Hyperlegible", monospace; }
|
|
main { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 48px 0 72px; }
|
|
header { border-left: 4px solid var(--pink); padding-left: 20px; margin-bottom: 36px; }
|
|
h1, h2, p { margin-top: 0; }
|
|
h1 { margin-bottom: 8px; font-size: clamp(2rem, 6vw, 4rem); letter-spacing: -.04em; }
|
|
h1 span { color: var(--pink); }
|
|
.kicker { color: var(--cyan); letter-spacing: .16em; font-size: .78rem; }
|
|
section { background: color-mix(in srgb, var(--panel) 90%, transparent); border: 1px solid var(--line); padding: 24px; margin-top: 22px; box-shadow: 8px 8px 0 #050208; }
|
|
form { display: grid; grid-template-columns: minmax(220px, 1fr) minmax(220px, .6fr) auto; gap: 16px; align-items: end; }
|
|
label { display: grid; gap: 7px; color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
|
|
input, select, button { min-height: 44px; border: 1px solid var(--line); background: #0c0612; color: var(--text); padding: 9px 12px; font: inherit; }
|
|
button { cursor: pointer; border-color: var(--pink); }
|
|
button:hover, button:focus-visible { background: var(--pink); color: #16051a; outline: none; }
|
|
button:disabled { opacity: .55; cursor: wait; }
|
|
.progress { height: 8px; margin: 20px 0 12px; background: #08030c; border: 1px solid #3d254b; }
|
|
.progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--pink), var(--cyan)); transition: width .15s; }
|
|
#status { margin-bottom: 0; color: var(--cyan); }
|
|
#status.error { color: #ff829c; }
|
|
#retry { margin-top: 12px; }
|
|
.section-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
|
|
.table-wrap { overflow-x: auto; }
|
|
table { width: 100%; border-collapse: collapse; min-width: 760px; }
|
|
th, td { padding: 12px 10px; border-top: 1px solid #3e294a; text-align: left; vertical-align: middle; }
|
|
th { color: var(--cyan); font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; }
|
|
.actions { display: flex; gap: 8px; }
|
|
.actions button { min-height: 36px; padding: 5px 10px; }
|
|
.actions .danger { border-color: #ff607f; }
|
|
.muted { color: var(--muted); }
|
|
.hidden { display: none !important; }
|
|
@media (max-width: 760px) { main { width: min(100% - 20px, 1120px); padding-top: 24px; } section { padding: 16px; } form { grid-template-columns: 1fr; } .section-heading { align-items: flex-start; } }
|