Files
ai-media-hub/frontend/style.css
AI Assistant d030e737cb
Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled
Initial commit for AI Media Hub
2026-03-12 14:13:05 +09:00

33 lines
690 B
CSS

/* Custom scrollbar to keep it dark and minimal */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
background: #333;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Glassmorphism for floating status elements if needed later */
.glass {
background: rgba(30, 30, 30, 0.7);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
/* Animate recommend badge */
@keyframes pop {
0% { transform: scale(0.9); opacity: 0; }
100% { transform: scale(1); opacity: 1; }
}
.recommend-card {
animation: pop 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}