f6b9d650f8
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 14s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 51s
Build and Push Docker Images / Build Pipeline (Meltano + dbt + Airflow) (push) Successful in 13s
Build and Push Docker Images / Trigger Portainer Update (push) Successful in 1s
- New /admissions route with AdmissionsView client component - Live countdowns (days until) to Primary/Secondary deadlines and Offer Days - Step-by-step timelines for both tracks with highlighted milestone rows - Tips section covering equal preference rule, late applications, waiting lists - Homepage countdown strip (4 cards) between discovery chips and how-it-works - Admissions nav link and footer link added Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
427 lines
8.3 KiB
CSS
427 lines
8.3 KiB
CSS
.page {
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
padding: 0 1.25rem 4rem;
|
|
}
|
|
|
|
/* ─── Hero ───────────────────────────────────────────── */
|
|
|
|
.hero {
|
|
text-align: center;
|
|
padding: 3rem 0 2rem;
|
|
}
|
|
|
|
.eyebrow {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.4rem;
|
|
font-size: 0.72rem;
|
|
font-weight: 600;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
color: var(--accent-teal, #2d7d7d);
|
|
background: rgba(45, 125, 125, 0.1);
|
|
padding: 0.3rem 0.7rem;
|
|
border-radius: 999px;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.eyebrowDot {
|
|
display: inline-block;
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
background: var(--accent-teal, #2d7d7d);
|
|
}
|
|
|
|
.heroTitle {
|
|
font-family: var(--font-playfair), 'Playfair Display', serif;
|
|
font-size: 2.75rem;
|
|
font-weight: 700;
|
|
line-height: 1.1;
|
|
letter-spacing: -0.015em;
|
|
color: var(--text-primary, #1a1612);
|
|
margin-bottom: 0.85rem;
|
|
}
|
|
|
|
.heroSub {
|
|
font-size: 1.05rem;
|
|
color: var(--text-secondary, #5c564d);
|
|
max-width: 640px;
|
|
margin: 0 auto;
|
|
line-height: 1.55;
|
|
}
|
|
|
|
/* ─── Countdown strip ────────────────────────────────── */
|
|
|
|
.countdownSection {
|
|
padding: 0 0 2.5rem;
|
|
border-bottom: 1px solid var(--border-color, #e5dfd5);
|
|
margin-bottom: 2.5rem;
|
|
}
|
|
|
|
.stripHeader {
|
|
margin-bottom: 0.85rem;
|
|
}
|
|
|
|
.stripLabel {
|
|
font-size: 0.72rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
color: var(--text-muted, #6d685f);
|
|
}
|
|
|
|
.countdownRail {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.chip {
|
|
background: var(--bg-card, #fff);
|
|
border: 1px solid var(--border-color, #e5dfd5);
|
|
border-radius: 12px;
|
|
padding: 1rem 1.1rem 0.9rem;
|
|
box-shadow: 0 2px 8px rgba(26, 22, 18, 0.06);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.2rem;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.chip::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 3px;
|
|
border-radius: 12px 12px 0 0;
|
|
}
|
|
|
|
.chipDeadline::before { background: var(--accent-coral, #e07256); }
|
|
.chipOffer::before { background: var(--accent-teal, #2d7d7d); }
|
|
|
|
.chipUrgent {
|
|
border-color: rgba(224, 114, 86, 0.4);
|
|
background: rgba(224, 114, 86, 0.04);
|
|
}
|
|
|
|
.chipTrack {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.3rem;
|
|
font-size: 0.6rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 0.15rem;
|
|
}
|
|
|
|
.chipTrackDeadline { color: var(--accent-coral, #e07256); }
|
|
.chipTrackOffer { color: var(--accent-teal, #2d7d7d); }
|
|
|
|
.chipTrackDot {
|
|
width: 5px;
|
|
height: 5px;
|
|
border-radius: 50%;
|
|
background: currentColor;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.chipDays {
|
|
font-family: var(--font-playfair), 'Playfair Display', serif;
|
|
font-size: 2.6rem;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.chipDeadline .chipDays,
|
|
.chipUrgent .chipDays {
|
|
color: var(--accent-coral-dark, #c45a3f);
|
|
}
|
|
|
|
.chipOffer .chipDays {
|
|
color: var(--accent-teal, #2d7d7d);
|
|
}
|
|
|
|
.chipDaysUnit {
|
|
font-size: 0.78rem;
|
|
font-weight: 500;
|
|
color: var(--text-muted, #6d685f);
|
|
margin-left: 0.2rem;
|
|
vertical-align: bottom;
|
|
line-height: 2;
|
|
}
|
|
|
|
.chipMilestone {
|
|
font-size: 0.85rem;
|
|
font-weight: 600;
|
|
color: var(--text-primary, #1a1612);
|
|
line-height: 1.25;
|
|
margin-top: 0.1rem;
|
|
}
|
|
|
|
.chipDate {
|
|
font-size: 0.75rem;
|
|
color: var(--text-muted, #6d685f);
|
|
margin-top: 0.05rem;
|
|
}
|
|
|
|
/* ─── Track (Secondary / Primary) ────────────────────── */
|
|
|
|
.track {
|
|
margin-bottom: 3rem;
|
|
background: var(--bg-card, #fff);
|
|
border: 1px solid var(--border-color, #e5dfd5);
|
|
border-radius: 14px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.trackHeader {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 1.5rem;
|
|
padding: 1.75rem 2rem 1.5rem;
|
|
border-bottom: 1px solid var(--border-color, #e5dfd5);
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.trackHeaderLeft {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.trackKicker {
|
|
display: block;
|
|
font-size: 0.68rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
color: var(--accent-coral, #e07256);
|
|
margin-bottom: 0.35rem;
|
|
}
|
|
|
|
.trackTitle {
|
|
font-family: var(--font-playfair), 'Playfair Display', serif;
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
color: var(--text-primary, #1a1612);
|
|
margin-bottom: 0.4rem;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.trackSub {
|
|
font-size: 0.9rem;
|
|
color: var(--text-secondary, #5c564d);
|
|
line-height: 1.5;
|
|
margin: 0;
|
|
}
|
|
|
|
.trackDates {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
flex-shrink: 0;
|
|
text-align: right;
|
|
}
|
|
|
|
.trackDateRow {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.05rem;
|
|
}
|
|
|
|
.trackDateLabel {
|
|
font-size: 0.62rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
color: var(--text-muted, #6d685f);
|
|
}
|
|
|
|
.trackDateVal {
|
|
font-size: 0.88rem;
|
|
font-weight: 600;
|
|
color: var(--text-primary, #1a1612);
|
|
}
|
|
|
|
/* ─── Timeline ───────────────────────────────────────── */
|
|
|
|
.timeline {
|
|
list-style: none;
|
|
padding: 1.5rem 2rem 1.75rem;
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0;
|
|
}
|
|
|
|
.step {
|
|
display: flex;
|
|
gap: 1rem;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.stepDotCol {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
flex-shrink: 0;
|
|
width: 20px;
|
|
padding-top: 0.15rem;
|
|
}
|
|
|
|
.stepDot {
|
|
width: 14px;
|
|
height: 14px;
|
|
border-radius: 50%;
|
|
background: var(--bg-card, #fff);
|
|
border: 2px solid var(--border-color, #e5dfd5);
|
|
flex-shrink: 0;
|
|
transition: border-color 0.2s ease, background 0.2s ease;
|
|
}
|
|
|
|
.stepDeadline .stepDot {
|
|
background: rgba(224, 114, 86, 0.15);
|
|
border-color: var(--accent-coral, #e07256);
|
|
}
|
|
|
|
.stepOffer .stepDot {
|
|
background: rgba(45, 125, 125, 0.15);
|
|
border-color: var(--accent-teal, #2d7d7d);
|
|
}
|
|
|
|
.stepLine {
|
|
width: 2px;
|
|
flex: 1;
|
|
min-height: 24px;
|
|
background: var(--border-color, #e5dfd5);
|
|
margin: 4px 0;
|
|
}
|
|
|
|
.stepContent {
|
|
padding-bottom: 1.5rem;
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.step:last-child .stepContent {
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.stepDate {
|
|
font-size: 0.72rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.06em;
|
|
text-transform: uppercase;
|
|
color: var(--text-muted, #6d685f);
|
|
margin-bottom: 0.2rem;
|
|
}
|
|
|
|
.stepDeadline .stepDate { color: var(--accent-coral, #e07256); }
|
|
.stepOffer .stepDate { color: var(--accent-teal, #2d7d7d); }
|
|
|
|
.stepTitle {
|
|
font-size: 0.95rem;
|
|
font-weight: 700;
|
|
color: var(--text-primary, #1a1612);
|
|
margin-bottom: 0.3rem;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.stepDeadline .stepTitle { color: var(--accent-coral-dark, #c45a3f); }
|
|
.stepOffer .stepTitle { color: var(--accent-teal, #2d7d7d); }
|
|
|
|
.stepBody {
|
|
font-size: 0.88rem;
|
|
color: var(--text-secondary, #5c564d);
|
|
line-height: 1.55;
|
|
margin: 0;
|
|
}
|
|
|
|
/* ─── Tips ───────────────────────────────────────────── */
|
|
|
|
.tips {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.tipsHeading {
|
|
font-family: var(--font-playfair), 'Playfair Display', serif;
|
|
font-size: 1.35rem;
|
|
font-weight: 700;
|
|
color: var(--text-primary, #1a1612);
|
|
margin-bottom: 1.25rem;
|
|
}
|
|
|
|
.tipsGrid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 1rem;
|
|
}
|
|
|
|
.tipCard {
|
|
background: var(--bg-secondary, #f3ede4);
|
|
border-radius: 12px;
|
|
padding: 1.25rem;
|
|
}
|
|
|
|
.tipNumber {
|
|
font-family: var(--font-playfair), 'Playfair Display', serif;
|
|
font-size: 1.75rem;
|
|
font-weight: 700;
|
|
color: var(--border-color, #e5dfd5);
|
|
line-height: 1;
|
|
margin-bottom: 0.6rem;
|
|
}
|
|
|
|
.tipHeading {
|
|
font-size: 0.95rem;
|
|
font-weight: 700;
|
|
color: var(--text-primary, #1a1612);
|
|
margin-bottom: 0.4rem;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.tipBody {
|
|
font-size: 0.875rem;
|
|
color: var(--text-secondary, #5c564d);
|
|
line-height: 1.55;
|
|
margin: 0;
|
|
}
|
|
|
|
/* ─── Responsive ─────────────────────────────────────── */
|
|
|
|
@media (max-width: 768px) {
|
|
.heroTitle {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.countdownRail {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.trackHeader {
|
|
flex-direction: column;
|
|
padding: 1.25rem 1.25rem 1rem;
|
|
}
|
|
|
|
.trackDates {
|
|
text-align: left;
|
|
flex-direction: row;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.timeline {
|
|
padding: 1.25rem;
|
|
}
|
|
|
|
.tipsGrid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|