779 lines
58 KiB
CSS
779 lines
58 KiB
CSS
:root,
|
|
:root[data-theme="dark"] {
|
|
color-scheme: dark;
|
|
--bg: #0b1326;
|
|
--bg-deep: #060e20;
|
|
--surface: #171f33;
|
|
--surface-low: #131b2e;
|
|
--surface-high: #222a3d;
|
|
--surface-bright: #2d3449;
|
|
--surface-soft: #111a2d;
|
|
--text: #dae2fd;
|
|
--text-soft: #b9caca;
|
|
--muted: #849495;
|
|
--border: #3a494a;
|
|
--border-strong: #59696a;
|
|
--primary: #00f5ff;
|
|
--primary-strong: #63f7ff;
|
|
--primary-ink: #003739;
|
|
--primary-soft: rgba(0, 245, 255, .1);
|
|
--accent: var(--primary);
|
|
--positive: #4edea3;
|
|
--positive-soft: rgba(78, 222, 163, .11);
|
|
--warning: #ffca69;
|
|
--warning-soft: rgba(255, 202, 105, .11);
|
|
--danger: #ff8f87;
|
|
--danger-soft: rgba(255, 143, 135, .11);
|
|
--indigo: #9ea5ff;
|
|
--shadow: 0 18px 55px rgba(0, 0, 0, .24);
|
|
--signal-glow: 0 0 0 1px rgba(22, 229, 238, .12), 0 0 28px rgba(22, 229, 238, .07);
|
|
--radius: 8px;
|
|
--radius-sm: 4px;
|
|
--sidebar: 256px;
|
|
--utility: 64px;
|
|
}
|
|
|
|
:root[data-theme="light"] {
|
|
color-scheme: light;
|
|
--bg: #f3f6fa;
|
|
--bg-deep: #e9eef5;
|
|
--surface: #ffffff;
|
|
--surface-low: #f7f9fc;
|
|
--surface-high: #edf2f7;
|
|
--surface-bright: #e2e9f2;
|
|
--surface-soft: #f6f9fc;
|
|
--text: #142033;
|
|
--text-soft: #2c3c52;
|
|
--muted: #617187;
|
|
--border: #d7e0eb;
|
|
--border-strong: #aebdce;
|
|
--primary: #007f87;
|
|
--primary-strong: #005e64;
|
|
--primary-ink: #f4ffff;
|
|
--primary-soft: rgba(0, 127, 135, .09);
|
|
--positive: #087f5b;
|
|
--positive-soft: rgba(8, 127, 91, .1);
|
|
--warning: #8b5b00;
|
|
--warning-soft: rgba(183, 119, 0, .11);
|
|
--danger: #b42318;
|
|
--danger-soft: rgba(180, 35, 24, .09);
|
|
--indigo: #4e56c8;
|
|
--shadow: 0 16px 44px rgba(27, 43, 65, .08);
|
|
--signal-glow: 0 0 0 1px rgba(0, 127, 135, .12), 0 12px 34px rgba(0, 70, 75, .08);
|
|
}
|
|
|
|
* { box-sizing: border-box; }
|
|
html { min-height: 100%; scroll-behavior: smooth; }
|
|
body {
|
|
min-width: 0;
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
overflow-x: hidden;
|
|
background:
|
|
linear-gradient(rgba(110, 150, 190, .025) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(110, 150, 190, .025) 1px, transparent 1px),
|
|
var(--bg);
|
|
background-size: 48px 48px;
|
|
color: var(--text);
|
|
font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
a { color: var(--primary-strong); text-decoration: none; }
|
|
a:hover { text-decoration: underline; }
|
|
button, input, select, textarea { font: inherit; }
|
|
button { cursor: pointer; }
|
|
code, pre, .eyebrow, .pill, .meta-label, .nav-group-label, .job-meta, .utility-title, .kpi-label {
|
|
font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
|
|
}
|
|
pre { overflow: auto; margin: 0; border-radius: var(--radius-sm); background: var(--bg-deep); padding: 18px; border: 1px solid var(--border); }
|
|
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
|
|
.icon { width: 20px; height: 20px; flex: 0 0 auto; }
|
|
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
|
|
.skip-link { position: fixed; left: 12px; top: -90px; z-index: 1000; padding: 11px 15px; background: var(--primary); color: var(--primary-ink); border-radius: var(--radius-sm); font-weight: 800; }
|
|
.skip-link:focus { top: 12px; }
|
|
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
|
|
.mobile-only { display: none !important; }
|
|
|
|
.app-frame { min-height: 100vh; }
|
|
.sidebar {
|
|
position: fixed;
|
|
inset: 0 auto 0 0;
|
|
z-index: 60;
|
|
width: var(--sidebar);
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 18px 14px;
|
|
background: color-mix(in srgb, var(--bg-deep) 96%, transparent);
|
|
border-right: 1px solid var(--border);
|
|
box-shadow: 12px 0 42px rgba(0, 0, 0, .08);
|
|
}
|
|
.sidebar-brand { display: flex; align-items: center; justify-content: space-between; padding: 2px 6px 22px; }
|
|
.brand { min-width: 0; display: flex; align-items: center; gap: 12px; color: var(--text); }
|
|
.brand:hover { text-decoration: none; }
|
|
.brand > span:last-child { min-width: 0; display: grid; line-height: 1.2; }
|
|
.brand strong { font-size: 18px; letter-spacing: -.025em; }
|
|
.brand small { margin-top: 3px; color: var(--muted); font: 10px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; text-transform: uppercase; }
|
|
.brand-mark { width: 42px; height: 42px; display: inline-grid; place-items: center; border-radius: 7px; background: var(--primary); color: var(--primary-ink); box-shadow: 0 0 24px color-mix(in srgb, var(--primary) 25%, transparent); }
|
|
.brand-mark .icon { width: 25px; height: 25px; stroke-width: 1.6; }
|
|
.nav-stack { min-height: 0; overflow-y: auto; display: grid; align-content: start; gap: 4px; padding: 4px 0; }
|
|
.nav-group-label { margin: 18px 13px 5px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
|
|
.nav-group-label:first-child { margin-top: 3px; }
|
|
.nav-link { position: relative; display: grid; grid-template-columns: 24px minmax(0, 1fr); align-items: center; gap: 12px; min-height: 54px; padding: 8px 12px; border: 1px solid transparent; border-radius: 7px; color: var(--muted); }
|
|
.nav-link > span { min-width: 0; display: grid; color: var(--text-soft); font-weight: 700; line-height: 1.25; }
|
|
.nav-link small { color: var(--muted); font-size: 11px; font-weight: 400; }
|
|
.nav-link:hover { background: var(--surface); border-color: var(--border); text-decoration: none; color: var(--primary); }
|
|
.nav-link.active { background: linear-gradient(90deg, var(--primary-soft), transparent); border-color: color-mix(in srgb, var(--primary) 25%, var(--border)); color: var(--primary); box-shadow: inset 3px 0 var(--primary); }
|
|
.nav-link.active > span, .nav-link.active small { color: var(--primary-strong); }
|
|
.sidebar-user { margin-top: auto; min-width: 0; display: grid; grid-template-columns: 38px minmax(0, 1fr) 10px; align-items: center; gap: 10px; padding: 15px 8px 2px; border-top: 1px solid var(--border); }
|
|
.sidebar-user > span:nth-child(2) { min-width: 0; display: grid; line-height: 1.25; }
|
|
.sidebar-user strong, .sidebar-user small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.sidebar-user strong { font-size: 13px; }
|
|
.sidebar-user small { color: var(--muted); font-size: 11px; }
|
|
.avatar { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--border-strong); border-radius: 50%; background: var(--surface-high); color: var(--primary-strong); font-weight: 800; }
|
|
.status-dot, .signal-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--positive); box-shadow: 0 0 0 4px var(--positive-soft); }
|
|
.workspace { min-height: 100vh; margin-left: var(--sidebar); }
|
|
.utilitybar { position: sticky; top: 0; z-index: 40; height: var(--utility); display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 clamp(18px, 3vw, 38px); background: color-mix(in srgb, var(--bg) 86%, transparent); border-bottom: 1px solid var(--border); backdrop-filter: blur(16px); }
|
|
.utilitybar-start, .utility-actions, .utility-title, .utility-link { display: flex; align-items: center; }
|
|
.utility-title { gap: 10px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
|
|
.utility-actions { gap: 8px; }
|
|
.utility-actions form { margin: 0; }
|
|
.utility-link, .icon-button { min-height: 42px; border: 1px solid transparent; border-radius: 6px; background: transparent; color: var(--muted); }
|
|
.utility-link { gap: 8px; padding: 8px 10px; font-weight: 650; }
|
|
button.utility-link { width: auto; }
|
|
.utility-link:hover, .icon-button:hover { border-color: var(--border); background: var(--surface-high); color: var(--text); text-decoration: none; }
|
|
.icon-button { width: 42px; display: inline-grid; place-items: center; padding: 0; }
|
|
.theme-icon-light { display: none; }
|
|
:root[data-theme="light"] .theme-icon-dark { display: none; }
|
|
:root[data-theme="light"] .theme-icon-light { display: block; }
|
|
.nav-scrim { display: none; }
|
|
.main-content { width: 100%; max-width: 2240px; margin: 0 auto; padding: clamp(28px, 2.2vw, 48px) clamp(22px, 2.4vw, 54px) 80px; }
|
|
|
|
.page-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 26px; margin-bottom: 28px; }
|
|
.page-header h1, .job-hero h1 { margin: 0; font-size: clamp(30px, 3.2vw, 42px); line-height: 1.08; letter-spacing: -.035em; }
|
|
.page-header p { max-width: 760px; margin: 9px 0 0; color: var(--muted); }
|
|
.eyebrow { margin: 0 0 9px !important; color: var(--primary) !important; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
|
|
.page-actions { display: flex; flex-wrap: wrap; gap: 9px; }
|
|
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin: 34px 0 17px; }
|
|
.section-heading h2 { margin: 0; font-size: 23px; letter-spacing: -.025em; }
|
|
.section-heading p { margin: 5px 0 0; color: var(--muted); }
|
|
.section-kicker { color: var(--primary); font: 11px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; letter-spacing: .11em; }
|
|
.title-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
|
|
|
|
.button { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 8px 14px; border: 1px solid transparent; border-radius: 6px; background: transparent; color: var(--text); font-weight: 750; line-height: 1.2; text-decoration: none; }
|
|
.button:hover { text-decoration: none; transform: translateY(-1px); }
|
|
.button:focus-visible, .icon-button:focus-visible, .utility-link:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible, a:focus-visible { outline: 3px solid color-mix(in srgb, var(--primary) 40%, transparent); outline-offset: 3px; }
|
|
.button-primary { background: var(--primary); color: var(--primary-ink); box-shadow: 0 8px 22px color-mix(in srgb, var(--primary) 16%, transparent); }
|
|
.button-primary:hover { background: var(--primary-strong); }
|
|
.button-secondary { background: var(--surface-high); border-color: var(--border); }
|
|
.button-secondary:hover, .button-ghost:hover { background: var(--surface-bright); border-color: var(--border-strong); }
|
|
.button-ghost { border-color: var(--border); color: var(--text-soft); }
|
|
.button-link { color: var(--primary-strong); background: var(--primary-soft); border-color: color-mix(in srgb, var(--primary) 20%, var(--border)); }
|
|
.button-danger { color: var(--danger); border-color: color-mix(in srgb, var(--danger) 30%, var(--border)); }
|
|
.button-block { width: 100%; }
|
|
.button-small { min-height: 34px; padding: 5px 10px; font-size: 13px; }
|
|
|
|
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
|
|
.stat-card, .panel, .job-card, .auth-card, .filter-bar, .table-wrap, .source-card { background: color-mix(in srgb, var(--surface) 95%, transparent); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
|
|
.stat-card { position: relative; min-height: 126px; display: grid; align-content: center; gap: 2px; padding: 20px; overflow: hidden; }
|
|
.stat-card::after { content: ""; position: absolute; right: -38px; bottom: -48px; width: 110px; height: 110px; border: 1px solid color-mix(in srgb, var(--primary) 12%, transparent); border-radius: 50%; }
|
|
.stat-card span, .stat-card small { position: relative; z-index: 1; color: var(--muted); }
|
|
.stat-card strong { position: relative; z-index: 1; margin: 2px 0; font-size: 34px; line-height: 1; letter-spacing: -.045em; }
|
|
.stat-card.signal { border-color: color-mix(in srgb, var(--primary) 35%, var(--border)); box-shadow: var(--signal-glow); }
|
|
.kpi-label { font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
|
|
.panel { padding: clamp(19px, 2.5vw, 30px); margin-bottom: 18px; }
|
|
.panel > h2:first-child, .panel > h3:first-child { margin-top: 0; }
|
|
.panel-subtle { background: var(--surface-low); box-shadow: none; }
|
|
|
|
.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 20px; align-items: start; }
|
|
.dashboard-rail { position: sticky; top: calc(var(--utility) + 20px); }
|
|
.radar-summary { position: relative; overflow: hidden; background: radial-gradient(circle at 88% 10%, var(--primary-soft), transparent 35%), var(--surface); }
|
|
.radar-summary::after { content: ""; position: absolute; right: -50px; top: -55px; width: 190px; height: 190px; border: 1px solid color-mix(in srgb, var(--primary) 18%, transparent); border-radius: 50%; box-shadow: inset 0 0 0 38px color-mix(in srgb, var(--primary) 2%, transparent), inset 0 0 0 74px color-mix(in srgb, var(--primary) 3%, transparent); pointer-events: none; }
|
|
.radar-summary > * { position: relative; z-index: 1; }
|
|
.rail-list { display: grid; gap: 10px; margin: 16px 0 0; }
|
|
.rail-item { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 0; border-top: 1px solid var(--border); }
|
|
.rail-item:first-child { border-top: 0; }
|
|
.rail-item span { color: var(--muted); }
|
|
|
|
.job-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
|
|
.job-card { position: relative; display: flex; flex-direction: column; gap: 15px; padding: 20px; transition: border-color .16s ease, transform .16s ease, box-shadow .16s ease; }
|
|
.job-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
|
|
.job-card.strong-match { border-color: color-mix(in srgb, var(--primary) 38%, var(--border)); box-shadow: var(--signal-glow); background: linear-gradient(145deg, var(--primary-soft), transparent 45%), var(--surface); }
|
|
.job-card-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 15px; align-items: start; }
|
|
.job-card h2, .job-card h3 { margin: 6px 0 3px; font-size: 20px; line-height: 1.24; letter-spacing: -.02em; }
|
|
.job-card h2 a, .job-card h3 a { color: var(--text); }
|
|
.job-card p { margin: 0; color: var(--muted); }
|
|
.score-block { min-width: 72px; display: grid; justify-items: end; }
|
|
.score-block strong { color: var(--primary); font-size: 27px; line-height: 1; letter-spacing: -.04em; }
|
|
.score-block small { margin-top: 5px; color: var(--muted); font: 9px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; letter-spacing: .06em; }
|
|
.job-meta { display: flex; flex-wrap: wrap; gap: 7px; color: var(--muted); font-size: 11px; }
|
|
.job-meta span { display: inline-flex; align-items: center; gap: 5px; padding: 5px 7px; border-radius: 4px; background: var(--surface-high); border: 1px solid color-mix(in srgb, var(--border) 70%, transparent); }
|
|
.job-meta .icon { width: 13px; height: 13px; }
|
|
.job-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
|
|
.pill { display: inline-flex; align-items: center; gap: 6px; width: fit-content; padding: 4px 8px; border: 1px solid var(--border); border-radius: 999px; background: var(--surface-high); color: var(--muted); font-size: 10px; font-weight: 750; text-transform: uppercase; letter-spacing: .04em; }
|
|
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
|
|
.pill-strong, .pill-allow, .pill-active, .pill-success, .pill-offer { background: var(--positive-soft); border-color: color-mix(in srgb, var(--positive) 24%, var(--border)); color: var(--positive); }
|
|
.pill-possible, .pill-review, .pill-uncertain, .pill-partial, .pill-interview { background: var(--warning-soft); border-color: color-mix(in srgb, var(--warning) 24%, var(--border)); color: var(--warning); }
|
|
.pill-hidden, .pill-deny, .pill-failed, .pill-quarantined, .pill-rejected { background: var(--danger-soft); border-color: color-mix(in srgb, var(--danger) 24%, var(--border)); color: var(--danger); }
|
|
.pill-new, .pill-applied, .pill-trial { background: var(--primary-soft); border-color: color-mix(in srgb, var(--primary) 24%, var(--border)); color: var(--primary-strong); }
|
|
.compact-list { margin: 0; padding-left: 20px; }
|
|
.compact-list li + li { margin-top: 6px; }
|
|
.compact-list.positive li::marker { color: var(--positive); }
|
|
.compact-list.caution li::marker { color: var(--warning); }
|
|
.attention { padding: 10px 12px; border-left: 3px solid var(--warning); border-radius: 4px; background: var(--warning-soft); color: var(--warning) !important; font-size: 13px; }
|
|
|
|
.filter-bar { display: flex; align-items: end; gap: 10px; padding: 14px; margin-bottom: 18px; box-shadow: none; }
|
|
.filter-bar label { display: grid; gap: 5px; }
|
|
.filter-bar .grow { flex: 1; }
|
|
.field-label { color: var(--muted); font: 10px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; letter-spacing: .07em; }
|
|
input, select, textarea { width: 100%; min-height: 43px; padding: 9px 11px; border: 1px solid var(--border); border-radius: 5px; background: var(--surface-low); color: var(--text); }
|
|
input[type="checkbox"], input[type="radio"] { width: 22px; min-height: 22px; height: 22px; padding: 0; accent-color: var(--primary); }
|
|
input::placeholder, textarea::placeholder { color: color-mix(in srgb, var(--muted) 78%, transparent); }
|
|
textarea { resize: vertical; }
|
|
.table-wrap { overflow-x: auto; }
|
|
.data-table { width: 100%; border-collapse: collapse; min-width: 760px; }
|
|
.data-table th { text-align: left; padding: 12px 15px; background: var(--surface-low); color: var(--muted); font: 10px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; letter-spacing: .07em; }
|
|
.data-table td { padding: 14px 15px; border-top: 1px solid var(--border); vertical-align: middle; }
|
|
.data-table tbody tr:hover { background: var(--surface-low); }
|
|
.data-table td small, .table-title + small { display: block; margin-top: 3px; color: var(--muted); }
|
|
.table-title { color: var(--text); font-weight: 760; }
|
|
.pagination { display: flex; justify-content: center; align-items: center; gap: 18px; padding: 22px; }
|
|
|
|
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 20px; align-items: start; }
|
|
.back-link { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 15px; color: var(--muted); }
|
|
.job-hero { position: relative; overflow: hidden; display: flex; justify-content: space-between; gap: 28px; padding: clamp(24px, 4vw, 40px); margin-bottom: 18px; border: 1px solid color-mix(in srgb, var(--primary) 30%, var(--border)); border-radius: var(--radius); background: radial-gradient(circle at 88% 25%, var(--primary-soft), transparent 32%), linear-gradient(145deg, var(--surface), var(--surface-low)); box-shadow: var(--signal-glow); }
|
|
.hero-subtitle { margin: 11px 0 15px; color: var(--text-soft); font-size: 17px; }
|
|
.hero-score { min-width: 136px; display: grid; justify-items: end; align-content: start; }
|
|
.hero-score strong { color: var(--primary); font-size: 54px; line-height: .95; letter-spacing: -.06em; }
|
|
.hero-score span { margin-top: 8px; color: var(--primary-strong); font: 10px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; letter-spacing: .08em; }
|
|
.hero-score small { margin-top: 3px; color: var(--muted); }
|
|
.sticky-card { position: sticky; top: calc(var(--utility) + 20px); padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
|
|
.sticky-card h2 { margin: 0 0 4px; }
|
|
.sticky-card > p { margin-top: 0; color: var(--muted); }
|
|
.stack-actions { display: grid; gap: 9px; }
|
|
.hide-form { display: grid; gap: 8px; padding-top: 9px; border-top: 1px solid var(--border); }
|
|
.hide-form label { color: var(--muted); font-size: 12px; }
|
|
.score-components { display: grid; gap: 13px; margin: 18px 0 25px; }
|
|
.score-components > div { display: grid; grid-template-columns: 120px minmax(120px, 1fr) 52px; gap: 12px; align-items: center; }
|
|
.score-components strong { text-align: right; }
|
|
.progress { height: 7px; overflow: hidden; border-radius: 999px; background: var(--surface-high); }
|
|
.progress i { display: block; height: 100%; min-width: 2px; border-radius: inherit; background: linear-gradient(90deg, var(--primary), var(--indigo)); }
|
|
.two-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
|
|
.prose { max-width: 82ch; color: var(--text-soft); }
|
|
.prose h2, .prose h3, .prose h4 { margin-top: 1.5em; color: var(--text); }
|
|
.definition-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
|
|
.definition-grid div { padding: 12px; border: 1px solid var(--border); border-radius: 5px; background: var(--surface-low); }
|
|
.definition-grid dt { color: var(--muted); font: 10px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; }
|
|
.definition-grid dd { margin: 4px 0 0; font-weight: 700; }
|
|
.source-list { list-style: none; padding: 0; }
|
|
.source-list li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-top: 1px solid var(--border); }
|
|
.source-list span { color: var(--muted); font-size: 12px; }
|
|
|
|
.pipeline { display: grid; grid-template-columns: repeat(6, minmax(210px, 1fr)); gap: 12px; overflow-x: auto; padding: 1px 1px 14px; scroll-snap-type: x proximity; }
|
|
.pipeline-column { min-height: 320px; padding: 12px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface-low); scroll-snap-align: start; }
|
|
.pipeline-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 3px 3px 12px; }
|
|
.pipeline-head h2 { margin: 0; font-size: 14px; }
|
|
.pipeline-count { min-width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--muted); font-size: 11px; }
|
|
.pipeline-cards { display: grid; gap: 9px; }
|
|
.pipeline-card { padding: 14px; border: 1px solid var(--border); border-radius: 6px; background: var(--surface); box-shadow: 0 8px 20px rgba(0, 0, 0, .08); }
|
|
.pipeline-card h3 { margin: 8px 0 3px; font-size: 15px; line-height: 1.3; }
|
|
.pipeline-card p { margin: 0 0 12px; color: var(--muted); font-size: 12px; }
|
|
.pipeline-empty { padding: 20px 8px; color: var(--muted); font-size: 12px; text-align: center; border: 1px dashed var(--border); border-radius: 5px; }
|
|
|
|
.card-list { display: grid; gap: 12px; }
|
|
.profile-card, .application-card { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin: 0; }
|
|
.profile-card h2, .application-card h2 { margin: 5px 0; }
|
|
.form-panel { max-width: 1100px; }
|
|
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
|
|
.form-grid label { display: grid; align-content: start; gap: 6px; color: var(--muted); font-size: 13px; font-weight: 650; }
|
|
.form-grid label > input, .form-grid label > select, .form-grid label > textarea { color: var(--text); font-weight: 400; }
|
|
.choice-field { min-width: 0; margin: 0; padding: 0; border: 0; }
|
|
.choice-field legend { margin-bottom: 9px; color: var(--muted); font-size: 13px; font-weight: 700; }
|
|
.choice-field > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
|
|
.choice-field > div > div { min-width: 0; }
|
|
.choice-field label { display: flex; align-items: center; gap: 9px; min-height: 44px; padding: 9px 11px; border: 1px solid var(--border); border-radius: 10px; background: color-mix(in srgb, var(--surface) 92%, transparent); color: var(--text); font-size: 13px; font-weight: 600; cursor: pointer; }
|
|
.choice-field label:has(input:checked) { border-color: color-mix(in srgb, var(--primary) 62%, var(--border)); background: color-mix(in srgb, var(--primary) 10%, var(--surface)); }
|
|
.choice-field small { display: block; margin-top: 7px; }
|
|
.choice-field > .grouped-choices { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
|
|
.choice-field .grouped-choices > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: start; gap: 7px; padding: 13px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface-low); }
|
|
.choice-field .grouped-choices > div > label { grid-column: 1 / -1; min-height: 0; margin: 0 0 3px; padding: 0; border: 0; border-radius: 0; background: transparent; color: var(--text-soft); font-size: 12px; font-weight: 800; letter-spacing: .02em; cursor: default; }
|
|
.choice-field .grouped-choices > div > label:has(input:checked) { border: 0; background: transparent; }
|
|
.choice-field .grouped-choices > div > div { min-width: 0; }
|
|
.choice-field .grouped-choices > div > div > label { height: 100%; }
|
|
.form-section { grid-column: 1 / -1; margin: 12px 0 -2px; padding-top: 18px; border-top: 1px solid var(--border); }
|
|
.form-section h2 { margin: 0; font-size: 17px; }
|
|
.form-section p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
|
|
.span-2 { grid-column: 1 / -1; }
|
|
.field-error { color: var(--danger); }
|
|
.form-actions { position: sticky; bottom: 12px; z-index: 5; display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; padding: 12px; border: 1px solid var(--border); border-radius: 7px; background: color-mix(in srgb, var(--surface) 92%, transparent); backdrop-filter: blur(12px); }
|
|
|
|
.source-overview { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-bottom: 20px; }
|
|
.source-alert-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
|
|
.source-alert-card { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; padding: 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface-soft); }
|
|
.source-alert-card p { margin: 6px 0 0; color: var(--muted); }
|
|
.source-alert-card .button { flex: 0 0 auto; }
|
|
.source-alert-card small { display: block; margin-top: 8px; color: var(--muted); }
|
|
.source-alert-card > .job-actions { flex: 0 0 auto; justify-content: flex-end; }
|
|
.mailbox-disclosure { margin-top: 16px; }
|
|
.mailbox-form-grid { margin-bottom: 14px; }
|
|
.checkbox-row { display: inline-flex; align-items: center; gap: 9px; color: var(--text); font-size: 14px; font-weight: 700; }
|
|
.checkbox-row input { width: 18px; height: 18px; accent-color: var(--accent); }
|
|
.platform-help-grid { margin-top: 12px; }
|
|
.button:disabled { cursor: not-allowed; opacity: .48; }
|
|
.source-card { overflow: hidden; box-shadow: none; }
|
|
.source-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 18px; }
|
|
.source-identity { min-width: 0; display: flex; gap: 13px; }
|
|
.source-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--border); border-radius: 6px; background: var(--surface-high); color: var(--primary); }
|
|
.source-identity h2 { margin: 0; font-size: 17px; }
|
|
.source-identity p { margin: 4px 0 0; color: var(--muted); font-size: 12px; overflow-wrap: anywhere; }
|
|
.source-actions { display: flex; align-items: center; gap: 10px; }
|
|
.source-details { padding: 18px; border-top: 1px solid var(--border); background: var(--surface-low); }
|
|
.source-details-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
|
|
.technical-log { max-height: 180px; overflow: auto; padding: 14px; border: 1px solid var(--border); border-radius: 5px; background: var(--bg-deep); color: var(--muted); font: 11px/1.6 ui-monospace, SFMono-Regular, Consolas, monospace; overflow-wrap: anywhere; }
|
|
.disclosure-icon { transition: transform .16s ease; }
|
|
[aria-expanded="true"] .disclosure-icon { transform: rotate(180deg); }
|
|
.import-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
|
|
|
|
.messages { display: grid; gap: 8px; margin-bottom: 18px; }
|
|
.message { padding: 12px 14px; border: 1px solid color-mix(in srgb, var(--primary) 24%, var(--border)); border-left: 3px solid var(--primary); border-radius: 5px; background: var(--primary-soft); color: var(--primary-strong); }
|
|
.message.success { background: var(--positive-soft); border-color: color-mix(in srgb, var(--positive) 25%, var(--border)); border-left-color: var(--positive); color: var(--positive); }
|
|
.message.warning { background: var(--warning-soft); border-color: color-mix(in srgb, var(--warning) 25%, var(--border)); border-left-color: var(--warning); color: var(--warning); }
|
|
.message.error { background: var(--danger-soft); border-color: color-mix(in srgb, var(--danger) 25%, var(--border)); border-left-color: var(--danger); color: var(--danger); }
|
|
.empty-state { grid-column: 1 / -1; padding: 48px 24px; text-align: center; border: 1px dashed var(--border-strong); border-radius: var(--radius); background: var(--surface-low); }
|
|
.empty-state h2 { margin-bottom: 6px; }
|
|
.empty-state p { max-width: 600px; margin: 0 auto 16px; color: var(--muted); }
|
|
.empty-icon { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 14px; border: 1px solid var(--border); border-radius: 50%; color: var(--primary); background: var(--primary-soft); }
|
|
.empty-icon .icon { width: 27px; height: 27px; }
|
|
.muted { color: var(--muted); }
|
|
.small { font-size: 12px; }
|
|
.auth-main { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at 18% 14%, var(--primary-soft), transparent 32%), radial-gradient(circle at 83% 85%, rgba(104, 112, 255, .08), transparent 28%), var(--bg); }
|
|
.auth-card { width: min(450px, 100%); padding: 30px; }
|
|
.auth-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
|
|
.auth-card h1 { margin: 0; }
|
|
.auth-card p { margin: 4px 0; color: var(--muted); }
|
|
.stack { display: grid; gap: 16px; }
|
|
.stack label { display: grid; gap: 6px; font-weight: 650; }
|
|
|
|
@media (max-width: 1180px) {
|
|
.stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
|
|
.dashboard-grid { grid-template-columns: 1fr; }
|
|
.dashboard-rail { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
|
|
.detail-layout { grid-template-columns: 1fr; }
|
|
.sticky-card { position: static; }
|
|
.source-overview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.mobile-only { display: inline-grid !important; }
|
|
.sidebar { visibility: hidden; transform: translateX(-105%); transition: transform .18s ease, visibility 0s linear .18s; }
|
|
.workspace { margin-left: 0; }
|
|
.nav-open .sidebar { visibility: visible; transform: translateX(0); transition-delay: 0s; }
|
|
.nav-scrim { position: fixed; inset: 0; z-index: 50; width: 100%; height: 100%; border: 0; background: rgba(1, 8, 17, .62); backdrop-filter: blur(2px); }
|
|
.nav-open .nav-scrim { display: block; }
|
|
.utilitybar { padding: 0 16px; }
|
|
.main-content { padding-top: 26px; }
|
|
.job-grid { grid-template-columns: 1fr; }
|
|
.dashboard-rail { grid-template-columns: 1fr 1fr; }
|
|
.pipeline { grid-template-columns: repeat(6, 245px); }
|
|
}
|
|
|
|
@media (max-width: 680px) {
|
|
.desktop-label { display: none; }
|
|
.utility-link { width: 42px; justify-content: center; padding: 0; border: 1px solid transparent; }
|
|
.main-content { padding: 22px 14px 54px; }
|
|
.page-header, .profile-card, .application-card, .job-hero { align-items: stretch; flex-direction: column; }
|
|
.page-header .button, .page-actions { width: 100%; }
|
|
.page-actions .button { flex: 1; }
|
|
.stats-grid, .two-columns, .form-grid, .definition-grid, .source-overview, .source-alert-grid, .source-details-grid, .import-layout, .dashboard-rail { grid-template-columns: 1fr; }
|
|
.source-alert-card { align-items: flex-start; flex-direction: column; }
|
|
.filter-bar { align-items: stretch; flex-direction: column; }
|
|
.span-2, .form-section { grid-column: auto; }
|
|
.job-card-head { grid-template-columns: 1fr; }
|
|
.score-block { justify-items: start; }
|
|
.job-hero { gap: 20px; }
|
|
.hero-score { min-width: 0; justify-items: start; }
|
|
.hero-score strong { font-size: 46px; }
|
|
.score-components > div { grid-template-columns: 86px minmax(80px, 1fr) 40px; font-size: 12px; }
|
|
.source-list li { flex-direction: column; gap: 3px; }
|
|
.source-card-head { flex-direction: column; }
|
|
.source-actions { width: 100%; justify-content: space-between; }
|
|
.choice-field > div { grid-template-columns: 1fr; }
|
|
.choice-field > .grouped-choices { grid-template-columns: 1fr; }
|
|
.choice-field .grouped-choices > div { grid-template-columns: 1fr; }
|
|
.form-actions { bottom: 8px; }
|
|
}
|
|
|
|
@media (max-width: 420px) {
|
|
.utility-title span:last-child { display: none; }
|
|
.stats-grid { gap: 9px; }
|
|
.stat-card { min-height: 112px; padding: 16px; }
|
|
.stat-card strong { font-size: 29px; }
|
|
.page-header h1, .job-hero h1 { font-size: 30px; }
|
|
.panel, .job-card { padding: 17px; }
|
|
.job-actions form, .job-actions .button { flex: 1 1 auto; }
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
*, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
|
|
}
|
|
|
|
/* VR-119: Stitch-compositie is leidend voor shell, feeds en intelligencepanelen. */
|
|
.utilitybar-start { min-width: 0; flex: 1; gap: 18px; }
|
|
.global-search { position: relative; width: min(440px, 44vw); }
|
|
.global-search .icon { position: absolute; left: 13px; top: 50%; z-index: 1; width: 17px; height: 17px; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
|
|
.global-search input { min-height: 42px; padding-left: 42px; background: var(--surface-low); }
|
|
.utility-radar { white-space: nowrap; }
|
|
.utility-cta { min-height: 40px; font-size: 13px; }
|
|
.section-link, .view-indicator { display: inline-flex; align-items: center; gap: 8px; }
|
|
.section-link .icon, .view-indicator .icon { width: 17px; height: 17px; }
|
|
.view-indicator { min-height: 42px; padding: 8px 13px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface-low); color: var(--text-soft); font: 12px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; letter-spacing: .06em; }
|
|
|
|
.dashboard-header { align-items: end; }
|
|
.dashboard-header strong { color: var(--primary); }
|
|
.radar-status { display: inline-flex; align-items: center; gap: 9px; max-width: 430px; padding: 10px 14px; border: 1px solid var(--border); border-radius: 999px; background: var(--surface-low); color: var(--text-soft); font: 11px ui-monospace, SFMono-Regular, Consolas, monospace; }
|
|
.radar-status a { margin-left: 3px; }
|
|
.dashboard-grid { grid-template-columns: minmax(0, 1fr) 310px; gap: 28px; }
|
|
.dashboard-matches { min-width: 0; }
|
|
.job-feed, .results-feed { display: grid; gap: 12px; }
|
|
.feed-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: stretch; padding: 0; gap: 0; overflow: hidden; }
|
|
.job-card-main { min-width: 0; display: grid; gap: 14px; padding: 20px; }
|
|
.feed-card-actions { min-width: 152px; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 9px; padding: 18px; border-left: 1px solid var(--border); background: var(--surface-low); }
|
|
.feed-card-actions form { margin: 0; }
|
|
.feed-card-actions .save-button { width: 100%; border-color: var(--border); }
|
|
.confidence-label { color: var(--muted); font: 10px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; letter-spacing: .06em; }
|
|
.signal-list { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; color: var(--text-soft); }
|
|
.signal-list li { position: relative; padding-left: 20px; }
|
|
.signal-list li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--positive); }
|
|
.rail-panel { padding: 22px; }
|
|
.rail-panel h2 { margin: 8px 0 10px; font-size: 20px; }
|
|
.rail-application-list { display: grid; margin: 8px 0 16px; border-top: 1px solid var(--border); }
|
|
.rail-application { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text); }
|
|
.rail-application:hover { color: var(--primary-strong); text-decoration: none; }
|
|
.rail-application > span { min-width: 0; display: grid; }
|
|
.rail-application strong, .rail-application small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.rail-application small { margin-top: 3px; color: var(--muted); }
|
|
.rail-application time { color: var(--warning); font: 11px ui-monospace, SFMono-Regular, Consolas, monospace; }
|
|
.compact-empty { min-height: 235px; display: grid; place-content: center; }
|
|
|
|
.filter-console { display: grid; grid-template-columns: minmax(250px, 1fr) 170px 170px auto; align-items: end; gap: 10px; padding: 16px; margin-bottom: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
|
|
.filter-console label { display: grid; gap: 6px; }
|
|
.input-with-icon { position: relative; display: block; }
|
|
.input-with-icon .icon { position: absolute; left: 12px; top: 50%; width: 16px; height: 16px; transform: translateY(-50%); color: var(--muted); }
|
|
.input-with-icon input { padding-left: 38px; }
|
|
.results-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin: 0 0 14px; }
|
|
.results-toolbar h2 { margin: 4px 0 0; font-size: 20px; }
|
|
.result-card { position: relative; min-width: 0; display: grid; grid-template-columns: 4px minmax(0, 1fr) auto; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: border-color .16s ease, transform .16s ease; }
|
|
.result-card:hover { border-color: var(--border-strong); transform: translateY(-1px); }
|
|
.result-card.strong-match { border-color: color-mix(in srgb, var(--primary) 38%, var(--border)); box-shadow: var(--signal-glow); }
|
|
.result-accent { background: var(--surface-bright); }
|
|
.result-card.strong-match .result-accent { background: var(--primary); }
|
|
.result-body { min-width: 0; display: grid; gap: 13px; padding: 19px 22px; }
|
|
.result-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; }
|
|
.result-heading h2 { margin: 7px 0 2px; font-size: 21px; line-height: 1.25; }
|
|
.result-heading h2 a { color: var(--text); }
|
|
.result-heading p, .result-summary { margin: 0; color: var(--muted); }
|
|
.result-summary { max-width: 78ch; font-size: 13px; }
|
|
.result-actions { min-width: 174px; display: grid; place-content: center; padding: 18px; border-left: 1px solid var(--border); background: var(--surface-low); }
|
|
|
|
.intelligence-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 0 0 18px; }
|
|
.intelligence-strip > div { min-height: 110px; display: grid; align-content: center; gap: 4px; padding: 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
|
|
.intelligence-strip strong { color: var(--primary-strong); font-size: 24px; letter-spacing: -.025em; }
|
|
.intelligence-strip small { color: var(--muted); }
|
|
|
|
.pipeline-page-header { align-items: end; }
|
|
.pipeline-page-header h1 { font-size: clamp(30px, 3vw, 40px); }
|
|
.pipeline { min-height: calc(100vh - 250px); grid-template-columns: repeat(6, minmax(270px, 1fr)); gap: 16px; }
|
|
.pipeline-column { min-height: 460px; padding: 14px; background: color-mix(in srgb, var(--surface-low) 72%, transparent); }
|
|
.pipeline-head h2 { display: flex; align-items: center; gap: 8px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-weight: 500; }
|
|
.column-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); }
|
|
.pipeline-column:nth-child(2) .column-dot, .pipeline-column:nth-child(3) .column-dot { background: var(--primary); }
|
|
.pipeline-column:nth-child(4) .column-dot { background: var(--positive); }
|
|
.pipeline-column:nth-child(5) .column-dot, .pipeline-column:nth-child(6) .column-dot { background: var(--danger); }
|
|
.pipeline-card { padding: 17px; background: var(--surface); }
|
|
|
|
.editor-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 22px; align-items: start; }
|
|
.profile-editor { max-width: none; padding: 28px; }
|
|
.profile-editor .form-section { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
|
|
.profile-editor .form-section:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
|
|
.form-section-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface-high); color: var(--primary); }
|
|
.editor-rail { position: sticky; top: calc(var(--utility) + 20px); }
|
|
.radar-preview { position: relative; overflow: hidden; }
|
|
.radar-preview::after { content: ""; position: absolute; right: -45px; top: -45px; width: 150px; height: 150px; border: 1px solid color-mix(in srgb, var(--primary) 15%, transparent); border-radius: 50%; box-shadow: inset 0 0 0 32px color-mix(in srgb, var(--primary) 3%, transparent), inset 0 0 0 62px color-mix(in srgb, var(--primary) 3%, transparent); pointer-events: none; }
|
|
.radar-preview > * { position: relative; z-index: 1; }
|
|
.preview-score { display: grid; margin: 20px 0; padding: 17px; border: 1px solid color-mix(in srgb, var(--primary) 30%, var(--border)); border-radius: var(--radius); background: var(--bg-deep); }
|
|
.preview-score strong { color: var(--primary); font-size: 36px; line-height: 1; }
|
|
.preview-score span { margin-top: 5px; color: var(--muted); font: 10px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; }
|
|
|
|
.import-disclosure { padding: 0; overflow: hidden; }
|
|
.import-disclosure > summary { min-height: 82px; display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; align-items: center; gap: 14px; padding: 16px 20px; cursor: pointer; list-style: none; }
|
|
.import-disclosure > summary::-webkit-details-marker { display: none; }
|
|
.import-disclosure > summary > span:nth-child(2) { display: grid; gap: 3px; }
|
|
.import-disclosure > summary strong { font-size: 17px; }
|
|
.import-disclosure > summary small { color: var(--muted); }
|
|
.import-disclosure[open] > summary { border-bottom: 1px solid var(--border); }
|
|
.import-disclosure[open] > summary .disclosure-icon { transform: rotate(180deg); }
|
|
.import-disclosure-body { padding: 20px; }
|
|
.source-list-heading { align-items: end; }
|
|
.inline-bulk-action { display: flex; align-items: end; gap: 8px; }
|
|
.inline-bulk-action select { min-width: 170px; }
|
|
.source-card { border-left: 3px solid var(--border-strong); }
|
|
.source-card:has(.pill-success) { border-left-color: var(--positive); }
|
|
.source-card:has(.pill-failed) { border-left-color: var(--danger); }
|
|
.source-card:has(.pill-review), .source-card:has(.pill-partial) { border-left-color: var(--warning); }
|
|
|
|
.system-hero { display: grid; grid-template-columns: minmax(300px, 1.25fr) minmax(300px, 1fr); gap: 14px; }
|
|
.system-readiness { min-height: 134px; display: grid; grid-template-columns: 48px minmax(0, 1fr) 10px; align-items: center; gap: 16px; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
|
|
.system-readiness.is-healthy { border-color: color-mix(in srgb, var(--positive) 35%, var(--border)); }
|
|
.system-readiness h2 { margin: 5px 0 2px; font-size: 22px; }
|
|
.system-readiness p { margin: 0; color: var(--muted); }
|
|
.system-counts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
|
|
.system-counts article { display: grid; align-content: center; gap: 6px; padding: 17px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface-low); }
|
|
.system-counts strong { font-size: 25px; }
|
|
.health-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
|
|
.health-card { padding: 19px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
|
|
.health-card-head { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
|
|
.health-card h3 { margin: 5px 0 0; font-size: 17px; }
|
|
.health-card dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 17px 0 0; }
|
|
.health-card dl div { padding: 9px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface-low); }
|
|
.health-card dt { color: var(--muted); font: 9px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; }
|
|
.health-card dd { margin: 3px 0 0; font-weight: 750; }
|
|
.command-panel { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
|
|
.command-panel > div { display: grid; gap: 6px; }
|
|
.command-panel pre { height: 100%; }
|
|
|
|
@media (max-width: 1180px) {
|
|
.utility-radar { display: none; }
|
|
.dashboard-grid { grid-template-columns: minmax(0, 1fr) 280px; }
|
|
.dashboard-rail { position: sticky; display: block; }
|
|
.editor-layout { grid-template-columns: 1fr; }
|
|
.editor-rail { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
|
|
.health-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.main-content { padding-inline: 20px; }
|
|
.global-search { width: min(420px, 55vw); }
|
|
.utility-cta { width: 42px; padding: 0; }
|
|
.dashboard-grid { grid-template-columns: 1fr; }
|
|
.dashboard-rail { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); position: static; }
|
|
.feed-card { grid-template-columns: 1fr; }
|
|
.feed-card-actions { min-width: 0; flex-direction: row; justify-content: flex-start; border-top: 1px solid var(--border); border-left: 0; }
|
|
.feed-card-actions .save-button { width: 42px; }
|
|
.filter-console { grid-template-columns: minmax(0, 1fr) repeat(2, 150px); }
|
|
.filter-console .button { grid-column: 1 / -1; }
|
|
.system-hero { grid-template-columns: 1fr; }
|
|
}
|
|
|
|
@media (max-width: 680px) {
|
|
.main-content { padding-inline: 14px; }
|
|
.utilitybar { gap: 8px; padding-inline: 12px; }
|
|
.utilitybar-start { gap: 8px; }
|
|
.global-search { width: min(100%, 260px); }
|
|
.global-search input { min-height: 40px; }
|
|
.dashboard-header { align-items: stretch; }
|
|
.radar-status { width: 100%; max-width: none; flex-wrap: wrap; border-radius: var(--radius); }
|
|
.dashboard-rail, .editor-rail, .health-grid { grid-template-columns: 1fr; }
|
|
.feed-card-actions .button { flex: 1; }
|
|
.filter-console { grid-template-columns: 1fr; }
|
|
.filter-console .button { grid-column: auto; }
|
|
.results-toolbar, .source-list-heading { align-items: stretch; flex-direction: column; }
|
|
.result-card { grid-template-columns: 3px minmax(0, 1fr); }
|
|
.result-actions { grid-column: 2; min-width: 0; place-content: stretch; padding-top: 0; border-top: 0; border-left: 0; background: var(--surface); }
|
|
.result-heading { grid-template-columns: 1fr; }
|
|
.result-heading .score-block { justify-items: start; }
|
|
.intelligence-strip { grid-template-columns: 1fr; }
|
|
.intelligence-strip > div { min-height: 92px; }
|
|
.pipeline { grid-template-columns: repeat(6, 258px); min-height: 410px; }
|
|
.pipeline-column { min-height: 380px; }
|
|
.profile-editor { padding: 18px; }
|
|
.inline-bulk-action { align-items: stretch; flex-direction: column; }
|
|
.inline-bulk-action select { min-width: 0; }
|
|
.system-counts, .command-panel { grid-template-columns: 1fr; }
|
|
}
|
|
|
|
@media (max-width: 420px) {
|
|
.global-search { width: 46vw; }
|
|
.global-search input::placeholder { color: transparent; }
|
|
.utility-actions { gap: 2px; }
|
|
.utility-actions .icon-button, .utility-actions .utility-link, .utility-cta { width: 38px; min-height: 38px; }
|
|
.radar-status span:nth-child(3), .radar-status a { display: none; }
|
|
.feed-card-actions { padding: 13px; }
|
|
.result-body { padding: 17px; }
|
|
.result-actions { padding: 0 17px 17px; }
|
|
}
|
|
|
|
/* VR-206: premium, title-led IT radar and genuinely adaptive widescreen composition. */
|
|
.jobs-page-header { align-items: center; }
|
|
.jobs-page-header .radar-status strong { color: var(--primary-strong); }
|
|
.premium-filter-console {
|
|
grid-template-columns: minmax(220px, 1fr) repeat(5, minmax(112px, 145px)) auto;
|
|
gap: 12px;
|
|
padding: 18px;
|
|
background:
|
|
linear-gradient(135deg, color-mix(in srgb, var(--primary) 4%, transparent), transparent 45%),
|
|
var(--surface);
|
|
box-shadow: 0 16px 42px rgba(0, 0, 0, .1);
|
|
}
|
|
.premium-filter-console select,
|
|
.premium-filter-console input { background: color-mix(in srgb, var(--surface-low) 94%, transparent); }
|
|
.results-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; align-items: start; }
|
|
.results-column { min-width: 0; }
|
|
.jobs-insight-rail { display: none; }
|
|
.result-card {
|
|
background:
|
|
linear-gradient(135deg, color-mix(in srgb, var(--primary) 2%, transparent), transparent 48%),
|
|
var(--surface);
|
|
box-shadow: 0 12px 32px rgba(0, 0, 0, .09);
|
|
}
|
|
.result-card:hover { box-shadow: 0 18px 42px rgba(0, 0, 0, .14); }
|
|
.result-heading h2 { font-size: clamp(20px, 1.3vw, 25px); letter-spacing: -.025em; }
|
|
.result-heading > div:first-child { min-width: 0; }
|
|
.score-block strong { font-size: 32px; }
|
|
.score-block small { max-width: 110px; text-align: right; line-height: 1.35; }
|
|
.score-pending strong { color: var(--muted); }
|
|
.pill-it { color: var(--primary-strong); border-color: color-mix(in srgb, var(--primary) 30%, var(--border)); background: var(--primary-soft); }
|
|
.evidence-line { display: flex; align-items: flex-start; gap: 9px; margin: 0; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 13px; line-height: 1.45; }
|
|
.evidence-line .icon { width: 17px; height: 17px; margin-top: 1px; }
|
|
.positive-evidence { border-left: 2px solid var(--positive); background: var(--positive-soft); color: var(--text-soft); }
|
|
.positive-evidence .icon { color: var(--positive); }
|
|
.concern-evidence { border-left: 2px solid var(--warning); background: var(--warning-soft); color: var(--text-soft); }
|
|
.concern-evidence > span:first-child { color: var(--warning); font-weight: 900; }
|
|
.result-actions { align-content: center; gap: 9px; }
|
|
.result-actions form { margin: 0; }
|
|
.result-actions .button { width: 100%; }
|
|
.profile-signal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin: 16px 0; }
|
|
.profile-signal-grid > div { display: grid; gap: 3px; padding: 11px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface-low); }
|
|
.profile-signal-grid span { color: var(--muted); font: 9px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; letter-spacing: .08em; }
|
|
.profile-signal-grid strong { font-size: 18px; }
|
|
.radar-steps { display: grid; gap: 0; margin: 14px 0 0; padding: 0; list-style: none; counter-reset: radar-step; }
|
|
.radar-steps li { position: relative; display: grid; gap: 2px; padding: 12px 0 12px 34px; border-top: 1px solid var(--border); counter-increment: radar-step; }
|
|
.radar-steps li::before { content: counter(radar-step); position: absolute; left: 0; top: 12px; width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--primary) 30%, var(--border)); border-radius: 50%; color: var(--primary-strong); font: 10px ui-monospace, SFMono-Regular, Consolas, monospace; }
|
|
.radar-steps span { color: var(--muted); font-size: 12px; }
|
|
.job-hero .title-row { margin-bottom: 12px; }
|
|
.detail-main .panel { box-shadow: 0 12px 38px rgba(0, 0, 0, .08); }
|
|
|
|
@media (min-width: 1350px) {
|
|
.results-layout { grid-template-columns: minmax(0, 1fr) 320px; }
|
|
.jobs-insight-rail { position: sticky; top: calc(var(--utility) + 20px); display: block; }
|
|
}
|
|
|
|
@media (min-width: 1850px) {
|
|
.utilitybar { padding-inline: clamp(30px, 2.5vw, 60px); }
|
|
.global-search { width: min(620px, 42vw); }
|
|
.dashboard-grid { grid-template-columns: minmax(0, 1fr) 360px; gap: 34px; }
|
|
.dashboard-grid .job-feed { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
|
|
.dashboard-grid .section-heading { grid-column: 1 / -1; }
|
|
.results-layout { grid-template-columns: minmax(0, 1fr) 360px; gap: 34px; }
|
|
.results-feed { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
|
|
.result-card { height: 100%; grid-template-columns: 4px minmax(0, 1fr); }
|
|
.result-actions { grid-column: 2; grid-template-columns: minmax(0, 1fr) auto; padding: 0 22px 20px; border: 0; background: transparent; }
|
|
.result-actions .button-ghost { width: auto; }
|
|
.detail-layout { grid-template-columns: minmax(0, 1fr) 380px; gap: 34px; }
|
|
.health-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
|
|
.editor-layout { grid-template-columns: minmax(0, 1fr) 360px; gap: 34px; }
|
|
}
|
|
|
|
@media (max-width: 1180px) {
|
|
.premium-filter-console { grid-template-columns: minmax(0, 1fr) repeat(2, minmax(145px, .35fr)); }
|
|
.premium-filter-console .button { grid-column: 1 / -1; }
|
|
}
|
|
|
|
@media (max-width: 680px) {
|
|
body { font-size: 15px; }
|
|
.section-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
|
|
.section-heading > .pill { align-self: flex-start; }
|
|
.jobs-page-header { align-items: stretch; }
|
|
.premium-filter-console { grid-template-columns: 1fr; padding: 14px; }
|
|
.premium-filter-console .button { grid-column: auto; }
|
|
.result-actions { gap: 8px; }
|
|
.result-actions form { width: 100%; }
|
|
.result-heading h2 { font-size: 20px; }
|
|
.score-block small { max-width: none; text-align: left; }
|
|
}
|
|
|
|
/* VR-208: personal market-demand and learning radar. */
|
|
.skills-page-header { align-items: center; }
|
|
.insight-hero {
|
|
position: relative;
|
|
display: grid;
|
|
grid-template-columns: 126px minmax(0, 1fr) auto;
|
|
align-items: center;
|
|
gap: 24px;
|
|
margin-bottom: 16px;
|
|
padding: 26px;
|
|
overflow: hidden;
|
|
border: 1px solid color-mix(in srgb, var(--primary) 32%, var(--border));
|
|
border-radius: var(--radius);
|
|
background:
|
|
radial-gradient(circle at 8% 50%, color-mix(in srgb, var(--primary) 13%, transparent), transparent 30%),
|
|
linear-gradient(125deg, color-mix(in srgb, var(--primary) 5%, var(--surface)), var(--surface));
|
|
box-shadow: 0 18px 48px rgba(0, 0, 0, .12);
|
|
}
|
|
.insight-hero h2 { margin: 7px 0; font-size: clamp(22px, 2vw, 31px); letter-spacing: -.025em; }
|
|
.insight-hero p { max-width: 80ch; margin: 0; color: var(--muted); }
|
|
.insight-orbit { position: relative; width: 104px; height: 104px; display: grid; place-items: center; }
|
|
.insight-orbit span { position: absolute; inset: 0; border: 1px solid color-mix(in srgb, var(--primary) 50%, transparent); border-radius: 50%; }
|
|
.insight-orbit span:nth-child(2) { inset: 13px; opacity: .65; }
|
|
.insight-orbit span:nth-child(3) { inset: 26px; opacity: .4; }
|
|
.insight-orbit strong { z-index: 1; color: var(--primary-strong); font-size: 24px; }
|
|
.skill-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-bottom: 16px; }
|
|
.skill-metrics article { display: grid; gap: 5px; padding: 18px 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
|
|
.skill-metrics article.metric-accent { border-color: color-mix(in srgb, var(--warning) 38%, var(--border)); background: linear-gradient(145deg, var(--warning-soft), var(--surface)); }
|
|
.skill-metrics span { color: var(--text-soft); font-size: 12px; }
|
|
.skill-metrics strong { font-size: 28px; line-height: 1; }
|
|
.skill-metrics small { color: var(--muted); }
|
|
.skills-filter-console { grid-template-columns: minmax(220px, 1fr) minmax(190px, .65fr) auto auto; }
|
|
.skills-insight-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: start; }
|
|
.skill-demand-list { display: grid; gap: 12px; }
|
|
.skill-demand-card { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) auto; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: 0 12px 32px rgba(0, 0, 0, .08); }
|
|
.skill-demand-card.is-gap { border-left: 3px solid var(--warning); }
|
|
.skill-demand-main { min-width: 0; display: grid; gap: 13px; padding: 20px 22px; }
|
|
.skill-card-heading { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
|
|
.skill-card-heading h3 { margin: 4px 0 0; font-size: 21px; }
|
|
.skill-category { color: var(--muted); font: 10px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; letter-spacing: .07em; }
|
|
.demand-meter { height: 7px; overflow: hidden; border-radius: 999px; background: var(--surface-high); }
|
|
.demand-meter span { display: block; min-width: 3px; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--primary), var(--primary-strong)); }
|
|
.skill-demand-stats { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--muted); font-size: 12px; }
|
|
.skill-demand-stats strong { color: var(--text); }
|
|
.learning-focus { display: grid; gap: 3px; margin: 0; padding: 12px 14px; border-left: 2px solid var(--warning); background: var(--warning-soft); color: var(--text-soft); font-size: 13px; }
|
|
.skill-job-examples { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
|
|
.skill-job-examples li { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; padding-top: 7px; border-top: 1px solid var(--border); font-size: 12px; }
|
|
.skill-job-examples a, .skill-job-examples span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.skill-job-examples span { color: var(--muted); }
|
|
.skill-demand-action { min-width: 174px; display: grid; place-content: center; padding: 20px; border-left: 1px solid var(--border); background: var(--surface-low); }
|
|
.skills-method-rail { position: sticky; top: calc(var(--utility) + 20px); display: grid; gap: 14px; }
|
|
.legend-list { display: grid; gap: 12px; margin: 16px 0 0; padding: 0; list-style: none; }
|
|
.legend-list li { display: flex; align-items: start; gap: 10px; }
|
|
.legend-list li > div { display: grid; gap: 2px; }
|
|
.legend-list small { color: var(--muted); line-height: 1.4; }
|
|
.legend-dot { width: 9px; height: 9px; flex: 0 0 auto; margin-top: 5px; border-radius: 50%; }
|
|
.legend-dot.exact { background: var(--positive); }
|
|
.legend-dot.inferred { border: 2px solid var(--primary); }
|
|
|
|
@media (min-width: 1850px) {
|
|
.skills-insight-layout { grid-template-columns: minmax(0, 1fr) 370px; gap: 34px; }
|
|
.skill-demand-list { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
|
|
.skill-demand-card { height: 100%; grid-template-columns: 1fr; }
|
|
.skill-demand-action { min-width: 0; place-content: stretch; padding: 0 22px 20px; border: 0; background: transparent; }
|
|
}
|
|
|
|
@media (max-width: 1020px) {
|
|
.insight-hero { grid-template-columns: 104px minmax(0, 1fr); }
|
|
.insight-hero > .button { grid-column: 2; justify-self: start; }
|
|
.skill-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
|
|
.skills-insight-layout { grid-template-columns: 1fr; }
|
|
.skills-method-rail { position: static; grid-template-columns: repeat(3, minmax(0, 1fr)); }
|
|
}
|
|
|
|
@media (max-width: 680px) {
|
|
.insight-hero { grid-template-columns: 1fr; padding: 20px; }
|
|
.insight-orbit { width: 88px; height: 88px; }
|
|
.insight-hero > .button { grid-column: auto; justify-self: stretch; }
|
|
.skill-metrics, .skills-method-rail { grid-template-columns: 1fr; }
|
|
.skills-filter-console { grid-template-columns: 1fr; }
|
|
.skill-demand-card { grid-template-columns: 1fr; }
|
|
.skill-demand-main { padding: 18px; }
|
|
.skill-demand-action { min-width: 0; place-content: stretch; padding: 0 18px 18px; border: 0; background: var(--surface); }
|
|
.skill-card-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
|
|
.skill-job-examples li { grid-template-columns: 1fr; gap: 2px; }
|
|
}
|