217 lines
3.8 KiB
CSS
217 lines
3.8 KiB
CSS
/* Shared layout for the compare screen's measure-first sections.
|
||||
|
|
Mobile base: each row-label becomes a measure header and each school cell
|
|||
|
|
stacks under it (colour-coded via the cell's ::before school tag).
|
|||
|
|
Desktop (≥761px): the mockups' grid — 200px row-label column + one column
|
|||
|
|
per school (2–4 columns supported via --school-count). */
|
|||
|
|
|
|||
|
|
.section {
|
|||
|
|
margin-top: 3rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.sectionTitle {
|
|||
|
|
font-family: var(--font-playfair), 'Playfair Display', Georgia, serif;
|
|||
|
|
font-size: 1.45rem;
|
|||
|
|
font-weight: 700;
|
|||
|
|
margin: 0;
|
|||
|
|
padding-left: 0.75rem;
|
|||
|
|
border-left: 3px solid var(--accent-coral-dark);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.how {
|
|||
|
|
font-size: 0.85rem;
|
|||
|
|
color: var(--text-muted);
|
|||
|
|
margin: 0.35rem 0 0 0.95rem;
|
|||
|
|
max-width: 70ch;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.grid {
|
|||
|
|
display: grid;
|
|||
|
|
grid-template-columns: 1fr;
|
|||
|
|
gap: 0;
|
|||
|
|
margin-top: 1.25rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.rowLabel {
|
|||
|
|
font-size: 0.85rem;
|
|||
|
|
font-weight: 600;
|
|||
|
|
color: var(--text-secondary);
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
gap: 0.35rem;
|
|||
|
|
background: var(--bg-secondary);
|
|||
|
|
border-radius: 6px;
|
|||
|
|
padding: 0.4rem 0.6rem;
|
|||
|
|
margin-top: 0.8rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.cell {
|
|||
|
|
padding: 0.4rem 0.6rem;
|
|||
|
|
font-size: 0.95rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.cell::before {
|
|||
|
|
content: attr(data-school);
|
|||
|
|
display: block;
|
|||
|
|
font-size: 0.72rem;
|
|||
|
|
font-weight: 600;
|
|||
|
|
color: var(--sc, var(--text-muted));
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.big {
|
|||
|
|
font-size: 1.35rem;
|
|||
|
|
font-weight: 700;
|
|||
|
|
font-variant-numeric: tabular-nums;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.small {
|
|||
|
|
display: block;
|
|||
|
|
font-size: 0.8rem;
|
|||
|
|
color: var(--text-muted);
|
|||
|
|
margin-top: 0.1rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.chip {
|
|||
|
|
display: inline-block;
|
|||
|
|
font-size: 0.75rem;
|
|||
|
|
font-weight: 600;
|
|||
|
|
border-radius: 999px;
|
|||
|
|
padding: 0.15rem 0.6rem;
|
|||
|
|
white-space: nowrap;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.chipGood {
|
|||
|
|
background: rgba(45, 125, 125, 0.14);
|
|||
|
|
color: var(--accent-teal);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.chipWarn {
|
|||
|
|
background: var(--accent-gold-bg);
|
|||
|
|
color: var(--accent-gold-text);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.chipBad {
|
|||
|
|
background: var(--accent-coral-bg);
|
|||
|
|
color: var(--accent-coral-dark);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.chipNeutral {
|
|||
|
|
background: var(--bg-secondary);
|
|||
|
|
color: var(--text-secondary);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.help {
|
|||
|
|
display: inline-flex;
|
|||
|
|
width: 15px;
|
|||
|
|
height: 15px;
|
|||
|
|
border-radius: 50%;
|
|||
|
|
border: 1px solid var(--text-muted);
|
|||
|
|
color: var(--text-muted);
|
|||
|
|
font-size: 0.65rem;
|
|||
|
|
align-items: center;
|
|||
|
|
justify-content: center;
|
|||
|
|
cursor: help;
|
|||
|
|
flex: none;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.badge {
|
|||
|
|
display: inline-block;
|
|||
|
|
font-weight: 700;
|
|||
|
|
border-radius: 6px;
|
|||
|
|
padding: 0.25rem 0.7rem;
|
|||
|
|
font-size: 0.9rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.badgeGood {
|
|||
|
|
background: rgba(45, 125, 125, 0.14);
|
|||
|
|
color: var(--accent-teal);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.badgeWarn {
|
|||
|
|
background: var(--accent-gold-bg);
|
|||
|
|
color: var(--accent-gold-text);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.badgeBad {
|
|||
|
|
background: var(--accent-coral-bg);
|
|||
|
|
color: var(--accent-coral-dark);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.rcList {
|
|||
|
|
display: flex;
|
|||
|
|
flex-direction: column;
|
|||
|
|
gap: 0.3rem;
|
|||
|
|
margin-top: 0.2rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.rcRow {
|
|||
|
|
display: flex;
|
|||
|
|
justify-content: space-between;
|
|||
|
|
align-items: center;
|
|||
|
|
gap: 0.5rem;
|
|||
|
|
font-size: 0.8rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.rcArea {
|
|||
|
|
color: var(--text-secondary);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.chipStack {
|
|||
|
|
display: flex;
|
|||
|
|
gap: 0.3rem;
|
|||
|
|
flex-wrap: wrap;
|
|||
|
|
margin-top: 0.3rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.barMini {
|
|||
|
|
display: block;
|
|||
|
|
height: 8px;
|
|||
|
|
border-radius: 4px;
|
|||
|
|
background: var(--bg-secondary);
|
|||
|
|
overflow: hidden;
|
|||
|
|
margin-top: 0.3rem;
|
|||
|
|
max-width: 140px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.barMini > i {
|
|||
|
|
display: block;
|
|||
|
|
height: 100%;
|
|||
|
|
border-radius: 4px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.card {
|
|||
|
|
background: var(--bg-card);
|
|||
|
|
border: 1px solid var(--border-light);
|
|||
|
|
border-radius: 16px;
|
|||
|
|
box-shadow: var(--shadow-soft);
|
|||
|
|
padding: 1.25rem 1.5rem;
|
|||
|
|
margin-top: 1rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.link {
|
|||
|
|
color: var(--accent-coral-dark);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
@media (min-width: 761px) {
|
|||
|
|
.grid {
|
|||
|
|
grid-template-columns: 200px repeat(var(--school-count, 3), 1fr);
|
|||
|
|
gap: 0 0.75rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.rowLabel {
|
|||
|
|
background: none;
|
|||
|
|
border-radius: 0;
|
|||
|
|
margin-top: 0;
|
|||
|
|
padding: 0.85rem 0.5rem 0.85rem 0;
|
|||
|
|
border-bottom: 1px solid var(--border-light);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.cell {
|
|||
|
|
padding: 0.85rem 0.25rem;
|
|||
|
|
border-bottom: 1px solid var(--border-light);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.cell::before {
|
|||
|
|
content: none;
|
|||
|
|
}
|
|||
|
|
}
|