Style Modal and SchoolSearchModal with warm editorial palette
All checks were successful
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 34s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 1m9s
Build and Push Docker Images / Trigger Portainer Update (push) Successful in 0s

- Modal: Warm overlay, rounded corners, Playfair Display title,
  coral close button hover, warm scrollbar colors
- SchoolSearchModal: Coral focus states, gold warning banner,
  coral add buttons, warm result item styling with hover effects

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Tudor
2026-02-03 11:17:06 +00:00
parent 53e11aca82
commit 51b081d9e0
2 changed files with 74 additions and 43 deletions

View File

@@ -1,7 +1,7 @@
.overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.5);
background: rgba(26, 22, 18, 0.6);
display: flex;
align-items: center;
justify-content: center;
@@ -20,14 +20,15 @@
}
.modal {
background: white;
border-radius: 12px;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
background: var(--bg-card, white);
border-radius: 16px;
box-shadow: 0 20px 40px rgba(26, 22, 18, 0.2);
max-height: 90vh;
overflow: hidden;
display: flex;
flex-direction: column;
animation: slideIn 0.3s ease;
border: 1px solid var(--border-color, #e5dfd5);
}
@keyframes slideIn {
@@ -61,23 +62,24 @@
justify-content: space-between;
align-items: center;
padding: 1.5rem;
border-bottom: 1px solid #e5e7eb;
border-bottom: 1px solid var(--border-color, #e5dfd5);
}
.title {
margin: 0;
font-size: 1.25rem;
font-weight: 600;
color: #1f2937;
color: var(--text-primary, #1a1612);
font-family: var(--font-playfair), 'Playfair Display', serif;
}
.closeButton {
padding: 0.5rem;
background: transparent;
border: none;
color: #6b7280;
color: var(--text-muted, #8a847a);
cursor: pointer;
border-radius: 6px;
border-radius: 8px;
transition: all 0.2s ease;
display: flex;
align-items: center;
@@ -85,8 +87,8 @@
}
.closeButton:hover {
background: #f3f4f6;
color: #1f2937;
background: var(--bg-secondary, #f3ede4);
color: var(--accent-coral, #e07256);
}
.content {
@@ -101,16 +103,16 @@
}
.content::-webkit-scrollbar-track {
background: #f3f4f6;
background: var(--bg-secondary, #f3ede4);
}
.content::-webkit-scrollbar-thumb {
background: #d1d5db;
background: var(--border-color, #e5dfd5);
border-radius: 4px;
}
.content::-webkit-scrollbar-thumb:hover {
background: #9ca3af;
background: var(--text-muted, #8a847a);
}
@media (max-width: 640px) {