Files
jbrechtel 95ac550191 fix: update to correct NeoBrutalismCSS CDN and class names
- Switch CDN to jsdelivr (matches design spec)
- Use nb-card, nb-card-title, nb-button default, nb-checkbox, nb-navbar-link
- Add Google Fonts import for Lexend Mega
- Style all route links as nb-button default buttons
- Fix navbar to use nb-navbar-brand and nb-navbar-nav
- Update style.css for new NB version compatibility
2026-07-16 07:34:45 -04:00

62 lines
1.0 KiB
CSS

/* Sis custom styles — layered on top of Neo Brutalism */
:root {
--nb-red: #e74c3c;
--nb-yellow: #f1c40f;
--nb-green: #2ecc71;
--nb-orange: #e67e22;
}
body {
min-height: 100vh;
background: #fff9e6;
background-image: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
background-size: 20px 20px;
margin: 0;
padding: 0;
}
/* Override NB navbar to have drop shadow like our design */
.nb-navbar {
box-shadow: 4px 4px 0 #000;
margin-bottom: 2rem;
}
/* List items with subtle dividers */
.nb-list-item {
border-bottom: 1px solid rgba(0,0,0,0.1);
padding: 0.5rem;
}
.nb-list-item:last-child {
border-bottom: none;
}
/* Stat tiles */
.stat-tile {
text-align: center;
padding: 1rem;
}
/* Container padding */
.nb-container {
padding: 0 1rem;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* Responsive */
@media (max-width: 768px) {
.nb-navbar {
flex-direction: column;
gap: 0.5rem;
padding: 0.5rem;
}
.nb-navbar-nav {
flex-wrap: wrap;
justify-content: center;
}
}