File size: 1,576 Bytes
1966bcd c07b7bf 1966bcd c07b7bf 1966bcd c07b7bf 1966bcd c07b7bf 1966bcd c07b7bf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
background: #4b5563;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #6b7280;
}
/* Animation for video cards */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.video-card {
animation: fadeIn 0.3s ease-out forwards;
opacity: 0;
}
.video-card:nth-child(1) { animation-delay: 0.1s; }
.video-card:nth-child(2) { animation-delay: 0.2s; }
.video-card:nth-child(3) { animation-delay: 0.3s; }
.video-card:nth-child(4) { animation-delay: 0.4s; }
.video-card:nth-child(5) { animation-delay: 0.5s; }
.video-card:nth-child(6) { animation-delay: 0.6s; }
.video-card:nth-child(7) { animation-delay: 0.7s; }
.video-card:nth-child(8) { animation-delay: 0.8s; }
/* Mobile-first responsive design */
@media (max-width: 640px) {
.mobile-hidden {
display: none !important;
}
.mobile-full-width {
width: 100% !important;
}
.mobile-p-2 {
padding: 0.5rem !important;
}
.mobile-grid-1 {
grid-template-columns: 1fr !important;
}
}
/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
.video-card:hover {
transform: none !important;
}
button, a {
min-height: 44px;
min-width: 44px;
}
input, select, textarea {
font-size: 16px; /* Prevents zoom on iOS */
}
}
|