ai-visionary-tube / style.css
Chris4K's picture
A youtube clone for AI videos and images
dda0337 verified
raw
history blame contribute delete
987 Bytes
/* Base styles */
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
line-height: 1.6;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Animation for cards */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.custom-video-card {
animation: fadeIn 0.3s ease-out forwards;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.video-grid {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
}
}
@media (max-width: 480px) {
.video-grid {
grid-template-columns: 1fr !important;
}
}