Files
school_compare/nextjs-app/components/Footer.module.css
Tudor c2ec067495
All checks were successful
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 1m19s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 1m22s
Build and Push Docker Images / Trigger Portainer Update (push) Successful in 1s
Apply warm editorial design system across all components
Replace generic blue/gray colors with warm editorial palette:
- Navigation: coral active states, branded logo colors
- Footer: navy background, gold section titles
- FilterBar: coral search button and focus states
- SchoolCard: coral left accent on hover, teal/coral buttons
- HomeView: gradient hero section, Playfair Display headings
- RankingsView: gold top-3 highlights, warm table styling
- ComparisonView: teal card borders, coral buttons

Consistent use of CSS variables and Playfair Display serif font
for headings throughout.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-03 10:11:23 +00:00

114 lines
1.8 KiB
CSS

.footer {
background: var(--accent-navy, #2c3e50);
color: var(--bg-secondary, #f3ede4);
margin-top: auto;
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 3rem 1.5rem 2rem;
}
.content {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 3rem;
margin-bottom: 3rem;
}
.section {
display: flex;
flex-direction: column;
gap: 1rem;
}
.title {
margin: 0;
font-size: 1.25rem;
font-weight: 700;
color: var(--bg-primary, #faf7f2);
font-family: var(--font-playfair), 'Playfair Display', serif;
}
.description {
margin: 0;
font-size: 0.875rem;
line-height: 1.6;
color: rgba(250, 247, 242, 0.7);
}
.sectionTitle {
margin: 0;
font-size: 0.875rem;
font-weight: 600;
color: var(--accent-gold, #c9a227);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.links {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.link {
font-size: 0.875rem;
color: rgba(250, 247, 242, 0.7);
text-decoration: none;
transition: color 0.2s ease;
}
.link:hover {
color: var(--accent-gold, #c9a227);
}
.linkDisabled {
font-size: 0.875rem;
color: rgba(250, 247, 242, 0.4);
cursor: not-allowed;
}
.bottom {
padding-top: 2rem;
border-top: 1px solid rgba(250, 247, 242, 0.15);
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.copyright,
.disclaimer {
margin: 0;
font-size: 0.875rem;
color: rgba(250, 247, 242, 0.6);
}
.disclaimer .link {
color: var(--accent-coral, #e07256);
}
.disclaimer .link:hover {
color: var(--accent-gold, #c9a227);
}
@media (max-width: 768px) {
.container {
padding: 2rem 1rem 1.5rem;
}
.content {
grid-template-columns: 1fr;
gap: 2rem;
margin-bottom: 2rem;
}
.bottom {
text-align: center;
}
}