Files
movie-night/app/static/styles.css
T
kbondelie 3d5de06b44 Initial commit — Movie Night media discovery app
AI-powered web app that recommends unwatched movies from a Jellyfin
library based on natural language mood input. Jellyfin auth, modular
LLM backend (Claude/OpenAI/Ollama), two-tier pre-filter + AI ranking,
mobile-responsive dark theme UI with poster cards and deep links.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-14 19:20:56 -07:00

34 lines
689 B
CSS

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.movie-card {
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.movie-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.genre-pill {
font-size: 0.7rem;
padding: 2px 8px;
border-radius: 9999px;
background: rgba(99, 102, 241, 0.2);
color: #a5b4fc;
}
.user-pill {
cursor: pointer;
transition: all 0.15s ease;
}
.user-pill.active {
background: rgba(99, 102, 241, 0.3);
border-color: #6366f1;
color: #c7d2fe;
}
.user-pill:not(.active) {
background: transparent;
border-color: #374151;
color: #6b7280;
}