313 lines
20 KiB
CSS
313 lines
20 KiB
CSS
:root {
|
|
--ink: #101828;
|
|
--muted: #667085;
|
|
--faint: #98a2b3;
|
|
--line: #e4e7ec;
|
|
--paper: #f6f7f9;
|
|
--white: #fff;
|
|
--navy: #101828;
|
|
--navy-2: #1d2939;
|
|
--cyan: #0891b2;
|
|
--cyan-soft: #ecfeff;
|
|
--green: #067647;
|
|
--green-soft: #ecfdf3;
|
|
--amber: #b54708;
|
|
--amber-soft: #fffaeb;
|
|
--rose: #b42318;
|
|
--rose-soft: #fef3f2;
|
|
--shadow: 0 12px 36px rgba(16, 24, 40, 0.06);
|
|
}
|
|
|
|
* { box-sizing: border-box; }
|
|
html { scroll-behavior: smooth; }
|
|
body {
|
|
margin: 0;
|
|
background: var(--paper);
|
|
color: var(--ink);
|
|
font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
button, input, select { font: inherit; }
|
|
button, a { -webkit-tap-highlight-color: transparent; }
|
|
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
|
|
outline: 3px solid rgba(6, 182, 212, 0.28);
|
|
outline-offset: 2px;
|
|
}
|
|
.hidden { display: none !important; }
|
|
.skip-link {
|
|
position: fixed; z-index: 100; left: 16px; top: -60px; padding: 10px 14px;
|
|
border-radius: 10px; background: white; color: var(--ink); font-weight: 700;
|
|
}
|
|
.skip-link:focus { top: 16px; }
|
|
.sidebar {
|
|
position: fixed; inset: 0 auto 0 0; z-index: 30; width: 244px; display: flex;
|
|
flex-direction: column; border-right: 1px solid #253044; background: var(--navy);
|
|
color: white; padding: 22px 16px;
|
|
}
|
|
.brand { display: flex; align-items: center; gap: 12px; color: white; text-decoration: none; padding: 4px 8px 24px; }
|
|
.brand-mark {
|
|
display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid #344054;
|
|
border-radius: 12px; background: #172033; color: #67e8f9; font: 800 16px ui-monospace, monospace;
|
|
}
|
|
.brand strong, .brand small { display: block; }
|
|
.brand strong { font-size: 14px; letter-spacing: .08em; }
|
|
.brand small { margin-top: 3px; color: #98a2b3; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
|
|
.sidebar nav { display: grid; gap: 5px; }
|
|
.nav-item {
|
|
display: grid; grid-template-columns: 30px 1fr; align-items: center; min-height: 46px; width: 100%;
|
|
border: 1px solid transparent; border-radius: 12px; background: transparent; color: #98a2b3;
|
|
padding: 8px 12px; text-align: left; font-size: 13px; font-weight: 650; cursor: pointer; transition: .18s ease;
|
|
}
|
|
.nav-item span { color: #667085; font: 700 11px ui-monospace, monospace; }
|
|
.nav-item:hover { background: #172033; color: white; }
|
|
.nav-item.active { border-color: #344054; background: #1d2939; color: white; }
|
|
.nav-item.active span { color: #67e8f9; }
|
|
.local-seal {
|
|
display: grid; grid-template-columns: 8px 1fr; gap: 10px; align-items: start; margin-top: auto;
|
|
border: 1px solid #344054; border-radius: 14px; background: #172033; padding: 13px;
|
|
}
|
|
.local-seal strong, .local-seal small { display: block; }
|
|
.local-seal strong { font-size: 11px; }
|
|
.local-seal small { margin-top: 4px; color: #667085; font: 10px ui-monospace, monospace; }
|
|
.live-dot { width: 7px; height: 7px; margin-top: 3px; border-radius: 50%; background: #32d583; box-shadow: 0 0 0 4px rgba(50,213,131,.12); }
|
|
.shell { margin-left: 244px; min-height: 100vh; }
|
|
.topbar {
|
|
position: sticky; top: 0; z-index: 20; display: flex; align-items: center; min-height: 76px;
|
|
border-bottom: 1px solid var(--line); background: rgba(255,255,255,.92); padding: 12px clamp(20px,4vw,48px);
|
|
backdrop-filter: blur(16px);
|
|
}
|
|
.topbar h1 { margin: 2px 0 0; font-size: 18px; letter-spacing: -.02em; }
|
|
.top-eyebrow { margin: 0; color: var(--faint); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
|
|
.top-actions { display: flex; align-items: center; gap: 9px; margin-left: auto; }
|
|
.icon-button {
|
|
display: grid; place-items: center; min-width: 44px; min-height: 44px; border: 1px solid var(--line);
|
|
border-radius: 12px; background: white; color: #475467; cursor: pointer; transition: .18s ease;
|
|
}
|
|
.icon-button:hover { border-color: #98a2b3; transform: translateY(-1px); }
|
|
.menu-button { display: none; margin-right: 12px; }
|
|
main { max-width: 1500px; margin: 0 auto; padding: 28px clamp(20px,4vw,48px) 64px; }
|
|
.view { display: grid; gap: 18px; }
|
|
.hero {
|
|
position: relative; overflow: hidden; border-radius: 28px; background: var(--navy); color: white;
|
|
padding: clamp(28px,5vw,48px); box-shadow: 0 24px 70px rgba(16,24,40,.16);
|
|
}
|
|
.hero::after {
|
|
content: ""; position: absolute; width: 360px; height: 360px; right: -160px; top: -230px;
|
|
border: 1px solid rgba(103,232,249,.15); border-radius: 50%; box-shadow: 0 0 0 60px rgba(103,232,249,.025), 0 0 0 120px rgba(103,232,249,.02);
|
|
}
|
|
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 28px; align-items: end; }
|
|
.eyebrow { margin: 0; color: var(--cyan); font-size: 10px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
|
|
.hero .eyebrow { color: #67e8f9; }
|
|
.hero h2 { max-width: 760px; margin: 13px 0 12px; font-size: clamp(30px,4vw,48px); line-height: 1.02; letter-spacing: -.045em; }
|
|
.hero-description { max-width: 760px; margin: 0; color: #98a2b3; font-size: 14px; line-height: 1.7; }
|
|
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 24px; color: #667085; font: 10px ui-monospace, monospace; }
|
|
.hero-actions { display: flex; flex-wrap: wrap; gap: 9px; justify-content: flex-end; }
|
|
.trace-hero { border-radius: 18px; padding: 20px 22px; box-shadow: none; }
|
|
.run-dossier-anchor { scroll-margin-top: 94px; outline: none; }
|
|
.run-dossier-anchor:focus-visible {
|
|
border-radius: 20px;
|
|
box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.22);
|
|
}
|
|
.trace-title { margin: 8px 0 !important; font-size: 18px !important; }
|
|
.trace-meta { margin-top: 8px; }
|
|
.rail-spaced { margin-top: 20px; }
|
|
.button {
|
|
display: inline-flex; align-items: center; justify-content: center; min-height: 44px; border: 1px solid transparent;
|
|
border-radius: 12px; padding: 9px 15px; text-decoration: none; font-size: 12px; font-weight: 750; cursor: pointer; transition: .18s ease;
|
|
}
|
|
.button:hover { transform: translateY(-1px); }
|
|
.button.primary { background: #67e8f9; color: var(--navy); }
|
|
.button.primary:hover { background: #a5f3fc; }
|
|
.button.secondary { border-color: #344054; background: #1d2939; color: #e4e7ec; }
|
|
.button.light { border-color: #d0d5dd; background: white; color: #344054; }
|
|
.pill {
|
|
display: inline-flex; align-items: center; min-height: 28px; border-radius: 999px; padding: 5px 10px;
|
|
font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap;
|
|
}
|
|
.pill.pass, .pill.certified, .pill.success, .pill.fresh, .pill.operational { background: var(--green-soft); color: var(--green); }
|
|
.pill.warning, .pill.attention, .pill.partial, .pill.stale, .pill.in-progress, .pill.in_progress { background: var(--amber-soft); color: var(--amber); }
|
|
.pill.error, .pill.failed, .pill.fail, .pill.blocked, .pill.non-certified, .pill.non_certified { background: var(--rose-soft); color: var(--rose); }
|
|
.pill.neutral, .pill.queued, .pill.unknown, .pill.no-data, .pill.no_data { background: #f2f4f7; color: #475467; }
|
|
.hero .pill { border: 1px solid #344054; background: #1d2939; color: #d0d5dd; }
|
|
.metric-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
|
|
.metric-card, .panel {
|
|
border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow);
|
|
}
|
|
.metric-card { min-height: 136px; padding: 19px; }
|
|
.metric-label { color: var(--faint); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
|
|
.metric-value { margin-top: 18px; font-size: 27px; font-weight: 720; letter-spacing: -.04em; }
|
|
.metric-detail { margin-top: 7px; color: var(--muted); font-size: 11px; line-height: 1.45; }
|
|
.panel { overflow: hidden; }
|
|
.panel-head { display: flex; justify-content: space-between; gap: 20px; align-items: start; padding: 23px 24px 18px; }
|
|
.panel h2 { margin: 6px 0 0; font-size: 19px; letter-spacing: -.025em; }
|
|
.panel-description { max-width: 720px; margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
|
|
.panel-body { border-top: 1px solid #f2f4f7; padding: 22px 24px 24px; }
|
|
.disclosure-panel {
|
|
overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: white;
|
|
box-shadow: 0 10px 28px rgba(16,24,40,.04);
|
|
}
|
|
.disclosure-panel > summary {
|
|
display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: 18px;
|
|
padding: 15px 20px; list-style: none; cursor: pointer; transition: background .16s ease;
|
|
}
|
|
.disclosure-panel > summary::-webkit-details-marker { display: none; }
|
|
.disclosure-panel > summary:hover { background: #f9fafb; }
|
|
.disclosure-panel > summary strong, .disclosure-panel > summary small { display: block; }
|
|
.disclosure-panel > summary strong { color: #344054; font-size: 13px; }
|
|
.disclosure-panel > summary small { margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.45; }
|
|
.disclosure-side { display: flex; flex-shrink: 0; align-items: center; gap: 10px; }
|
|
.disclosure-side > b { color: var(--faint); font-size: 20px; font-weight: 400; transition: transform .16s ease; }
|
|
.disclosure-panel[open] .disclosure-side > b { transform: rotate(45deg); }
|
|
.disclosure-body { border-top: 1px solid #f2f4f7; padding: 20px; }
|
|
.disclosure-body > dl { margin: -20px; }
|
|
.disclosure-panel .manifest-row { border-bottom: 1px solid #f2f4f7; }
|
|
.disclosure-panel .manifest-row:last-child { border-bottom: 0; }
|
|
.disclosure-panel .manifest-row dt { color: var(--faint); font: 750 9px ui-monospace,monospace; letter-spacing: .07em; text-transform: uppercase; }
|
|
.disclosure-panel .manifest-row dd { margin: 0; overflow-wrap: anywhere; color: #344054; font: 11px/1.5 ui-monospace,monospace; }
|
|
.two-col { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(330px,.8fr); gap: 18px; }
|
|
.rail-wrap { overflow-x: auto; padding-bottom: 4px; }
|
|
.evidence-rail { display: grid; grid-template-columns: repeat(7,minmax(116px,1fr)); min-width: 840px; gap: 7px; }
|
|
.gate-button {
|
|
position: relative; min-height: 92px; border: 1px solid var(--line); border-radius: 14px; background: #fafafa;
|
|
padding: 13px; color: #344054; text-align: left; cursor: pointer; transition: .18s ease;
|
|
}
|
|
.gate-button::after { content: ""; position: absolute; top: 27px; right: -8px; width: 8px; height: 1px; background: #d0d5dd; }
|
|
.gate-button:last-child::after { display: none; }
|
|
.gate-button:hover { border-color: #98a2b3; transform: translateY(-1px); }
|
|
.gate-button.selected { border-color: var(--cyan); background: var(--cyan-soft); box-shadow: 0 0 0 3px rgba(6,182,212,.09); }
|
|
.gate-index { color: var(--faint); font: 800 9px ui-monospace, monospace; letter-spacing: .1em; }
|
|
.gate-name { display: block; margin-top: 14px; font-size: 11px; font-weight: 750; }
|
|
.gate-state { display: flex; align-items: center; gap: 6px; margin-top: 8px; color: var(--muted); font-size: 9px; text-transform: uppercase; }
|
|
.state-dot { width: 7px; height: 7px; border-radius: 50%; background: #98a2b3; }
|
|
.state-dot.pass { background: #12b76a; }.state-dot.warning { background: #f79009; }.state-dot.error,.state-dot.blocked { background: #f04438; }.state-dot.running { background: #06b6d4; }
|
|
.dossier { display: grid; grid-template-columns: minmax(0,.9fr) minmax(360px,1.1fr); gap: 18px; margin-top: 20px; }
|
|
.decision-card { display: grid; gap: 12px; }
|
|
.inset { border: 1px solid var(--line); border-radius: 14px; background: #f9fafb; padding: 15px; }
|
|
.inset-label { color: var(--faint); font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
|
|
.inset p { margin: 9px 0 0; color: #344054; font-size: 12px; line-height: 1.6; }
|
|
.manifest { overflow: hidden; border: 1px solid #1d2939; border-radius: 16px; background: var(--navy); color: #e4e7ec; }
|
|
.manifest-head { display: flex; justify-content: space-between; gap: 16px; padding: 16px 18px; border-bottom: 1px solid #1d2939; }
|
|
.manifest-head .eyebrow { color: #67e8f9; }
|
|
.manifest dl { margin: 0; }
|
|
.manifest-row { display: grid; grid-template-columns: 140px minmax(0,1fr); gap: 16px; border-bottom: 1px solid #1d2939; padding: 12px 18px; }
|
|
.manifest-row:last-child { border-bottom: 0; }
|
|
.manifest dt { color: #667085; font: 750 9px ui-monospace,monospace; letter-spacing: .07em; text-transform: uppercase; }
|
|
.manifest dd { margin: 0; overflow-wrap: anywhere; color: #d0d5dd; font: 11px/1.5 ui-monospace,monospace; }
|
|
.timeline { display: grid; gap: 10px; margin-top: 12px; }
|
|
.timeline-item { display: grid; grid-template-columns: 8px minmax(0,1fr); gap: 10px; }
|
|
.timeline-line { display: flex; flex-direction: column; align-items: center; }
|
|
.timeline-line .state-dot { margin-top: 5px; }
|
|
.timeline-line::after { content:""; width: 1px; flex: 1; margin-top: 4px; background: var(--line); }
|
|
.timeline-item:last-child .timeline-line::after { display: none; }
|
|
.timeline-copy { padding-bottom: 7px; }
|
|
.timeline-copy strong { font-size: 11px; text-transform: capitalize; }
|
|
.timeline-copy time { float: right; color: var(--faint); font: 9px ui-monospace,monospace; }
|
|
.timeline-copy p { margin: 4px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
|
|
.table-scroll { overflow-x: auto; }
|
|
table { width: 100%; min-width: 780px; border-collapse: collapse; font-size: 12px; }
|
|
th { background: #f9fafb; color: var(--faint); padding: 11px 15px; text-align: left; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
|
|
td { border-top: 1px solid #f2f4f7; padding: 14px 15px; color: #344054; }
|
|
tbody tr { transition: background .15s ease; }
|
|
tbody tr:hover { background: #f0fdfa; }
|
|
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
|
|
.right { text-align: right; }
|
|
.empty { padding: 52px 20px; color: var(--muted); text-align: center; }
|
|
.empty-mark { display: grid; place-items: center; width: 42px; height: 42px; margin: 0 auto 13px; border: 1px solid var(--line); border-radius: 50%; color: var(--faint); }
|
|
.notice { border: 1px solid; border-radius: 14px; padding: 15px 18px; font-size: 12px; line-height: 1.55; }
|
|
.notice.warning { border-color: #fedf89; background: var(--amber-soft); color: var(--amber); }
|
|
.notice.error { border-color: #fecdca; background: var(--rose-soft); color: var(--rose); }
|
|
.notice.success { border-color: #abefc6; background: var(--green-soft); color: var(--green); }
|
|
.findings { display: grid; gap: 10px; }
|
|
.finding { display: grid; grid-template-columns: 30px minmax(0,1fr); gap: 12px; border-left: 4px solid var(--cyan); border-radius: 11px; background: #f9fafb; padding: 14px; }
|
|
.finding.critical { border-color: #f04438; background: var(--rose-soft); }
|
|
.finding.warning { border-color: #f79009; background: var(--amber-soft); }
|
|
.finding-index { color: var(--faint); font: 700 14px ui-monospace,monospace; }
|
|
.finding code { font-size: 10px; font-weight: 800; color: #344054; }
|
|
.finding p { margin: 6px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
|
|
.source-grid { display: grid; gap: 10px; }
|
|
.source { border: 1px solid var(--line); border-radius: 13px; padding: 14px; }
|
|
.source-top { display: flex; justify-content: space-between; gap: 12px; }
|
|
.source h3 { margin: 0; font-size: 12px; text-transform: capitalize; }
|
|
.source-meta, .source-path { color: var(--faint); font: 9px/1.5 ui-monospace,monospace; }
|
|
.source-meta { margin-top: 5px; }.source-path { overflow-wrap:anywhere; border-top: 1px solid #f2f4f7; margin-top: 12px; padding-top: 10px; }
|
|
.distribution { display: grid; gap: 17px; margin: 0; padding: 0; list-style: none; }
|
|
.distribution-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; }
|
|
.distribution-head span strong, .distribution-head span small { display: block; }
|
|
.distribution-head span strong { color: #344054; font-size: 12px; text-transform: capitalize; }
|
|
.distribution-head span small { margin-top: 4px; color: var(--muted); font-size: 10px; }
|
|
.distribution-head > b { color: var(--ink); font: 700 11px ui-monospace,monospace; }
|
|
.distribution-track { overflow: hidden; height: 8px; margin-top: 8px; border-radius: 99px; background: #eaecf0; }
|
|
.distribution-track i { display: block; height: 100%; border-radius: inherit; background: var(--cyan); }
|
|
.distribution-track i.success { background: #12b76a; }
|
|
.distribution-track i.warning { background: #f79009; }
|
|
.distribution-track i.danger { background: #f04438; }
|
|
.metric-grid.compact .metric-card { min-height: 116px; }
|
|
.technical-section { margin-top: 24px; border-top: 1px solid #f2f4f7; padding-top: 22px; }
|
|
.technical-section h3 { margin: 6px 0 14px; font-size: 16px; }
|
|
.coverage { display: grid; gap: 18px; }
|
|
.coverage-head { display: flex; justify-content: space-between; gap: 12px; font-size: 11px; }
|
|
.coverage-track { overflow: hidden; height: 7px; margin-top: 8px; border-radius: 99px; background: #eaecf0; }
|
|
.coverage-fill { height: 100%; border-radius: inherit; background: var(--cyan); }
|
|
.coverage-fill.width-0 { width: 0; }.coverage-fill.width-5 { width: 5%; }
|
|
.coverage-fill.width-10 { width: 10%; }.coverage-fill.width-15 { width: 15%; }
|
|
.coverage-fill.width-20 { width: 20%; }.coverage-fill.width-25 { width: 25%; }
|
|
.coverage-fill.width-30 { width: 30%; }.coverage-fill.width-35 { width: 35%; }
|
|
.coverage-fill.width-40 { width: 40%; }.coverage-fill.width-45 { width: 45%; }
|
|
.coverage-fill.width-50 { width: 50%; }.coverage-fill.width-55 { width: 55%; }
|
|
.coverage-fill.width-60 { width: 60%; }.coverage-fill.width-65 { width: 65%; }
|
|
.coverage-fill.width-70 { width: 70%; }.coverage-fill.width-75 { width: 75%; }
|
|
.coverage-fill.width-80 { width: 80%; }.coverage-fill.width-85 { width: 85%; }
|
|
.coverage-fill.width-90 { width: 90%; }.coverage-fill.width-95 { width: 95%; }
|
|
.coverage-fill.width-100 { width: 100%; }
|
|
.success-copy { color: var(--green); }
|
|
.filters { display: grid; grid-template-columns: 1fr 1fr 1fr 1.5fr auto; gap: 12px; align-items: end; }
|
|
.field span { display: block; margin-bottom: 7px; color: var(--faint); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
|
|
.field input, .field select { width: 100%; min-height: 44px; border: 1px solid #d0d5dd; border-radius: 11px; background: white; padding: 8px 11px; color: var(--ink); font-size: 12px; }
|
|
.field input:hover, .field select:hover { border-color: #98a2b3; }
|
|
.filter-actions { display: flex; gap: 7px; }
|
|
.breakdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
|
|
.loading-state { display: grid; gap: 18px; }
|
|
.skeleton { position: relative; overflow: hidden; border-radius: 20px; background: #eaecf0; }
|
|
.skeleton::after { content:""; position:absolute; inset:0; transform:translateX(-100%); background:linear-gradient(90deg,transparent,#ffffff80,transparent); animation: shimmer 1.4s infinite; }
|
|
.hero-skeleton { height: 280px; }.metric-skeleton { height: 136px; }
|
|
@keyframes shimmer { 100% { transform: translateX(100%); } }
|
|
.nav-scrim { position: fixed; z-index: 25; inset: 0; background: rgba(16,24,40,.5); }
|
|
|
|
@media (max-width: 1120px) {
|
|
.metric-grid { grid-template-columns: repeat(2,1fr); }
|
|
.two-col, .breakdown-grid, .dossier { grid-template-columns: 1fr; }
|
|
.hero-grid { grid-template-columns: 1fr; }
|
|
.hero-actions { justify-content: flex-start; }
|
|
.panel-head { flex-wrap: wrap; }
|
|
.filters { grid-template-columns: 1fr 1fr; }
|
|
.filter-actions { grid-column: 1/-1; }
|
|
}
|
|
@media (max-width: 960px) {
|
|
.sidebar { transform: translateX(-100%); transition: transform .2s ease; box-shadow: 18px 0 50px rgba(16,24,40,.28); }
|
|
.sidebar.open { transform: translateX(0); }
|
|
.shell { margin-left: 0; }
|
|
.menu-button { display: grid; }
|
|
.hero-grid { grid-template-columns: 1fr; }
|
|
.hero-actions { justify-content: flex-start; }
|
|
.dossier { grid-template-columns: 1fr; }
|
|
.top-actions .pill { display: none; }
|
|
}
|
|
@media (max-width: 560px) {
|
|
main { padding: 18px 14px 52px; }
|
|
.topbar { padding: 10px 14px; }
|
|
.metric-grid, .filters { grid-template-columns: 1fr; }
|
|
.hero { border-radius: 20px; padding: 25px 20px; }
|
|
.hero h2 { font-size: 31px; }
|
|
.panel-head, .panel-body { padding-left: 17px; padding-right: 17px; }
|
|
.manifest-row { grid-template-columns: 1fr; gap: 5px; }
|
|
}
|
|
@media (prefers-reduced-motion: reduce) {
|
|
*, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
|
|
}
|
|
@media print {
|
|
.sidebar, .topbar { display: none; }
|
|
.shell { margin: 0; }
|
|
main { max-width: none; padding: 0; }
|
|
.hero, .metric-card, .panel { box-shadow: none; break-inside: avoid; }
|
|
}
|