70 lines
1.7 KiB
CSS
70 lines
1.7 KiB
CSS
|
|
/* Global motion utilities and shared animations */
|
||
|
|
|
||
|
|
/* Stagger entrance for list/grid children */
|
||
|
|
@keyframes list-item-in {
|
||
|
|
from {
|
||
|
|
opacity: 0;
|
||
|
|
transform: translateY(8px);
|
||
|
|
}
|
||
|
|
to {
|
||
|
|
opacity: 1;
|
||
|
|
transform: translateY(0);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
@keyframes scale-in {
|
||
|
|
from {
|
||
|
|
opacity: 0;
|
||
|
|
transform: scale(0.95);
|
||
|
|
}
|
||
|
|
to {
|
||
|
|
opacity: 1;
|
||
|
|
transform: scale(1);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
@keyframes slide-up-in {
|
||
|
|
from {
|
||
|
|
opacity: 0;
|
||
|
|
transform: translateY(12px);
|
||
|
|
}
|
||
|
|
to {
|
||
|
|
opacity: 1;
|
||
|
|
transform: translateY(0);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
@keyframes backdrop-in {
|
||
|
|
from { opacity: 0; }
|
||
|
|
to { opacity: 1; }
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Stagger utility: apply to parent, children get delayed entrance */
|
||
|
|
.motion-stagger > * {
|
||
|
|
animation: list-item-in 280ms var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)) both;
|
||
|
|
}
|
||
|
|
|
||
|
|
.motion-stagger > *:nth-child(1) { animation-delay: 0ms; }
|
||
|
|
.motion-stagger > *:nth-child(2) { animation-delay: 40ms; }
|
||
|
|
.motion-stagger > *:nth-child(3) { animation-delay: 80ms; }
|
||
|
|
.motion-stagger > *:nth-child(4) { animation-delay: 120ms; }
|
||
|
|
.motion-stagger > *:nth-child(5) { animation-delay: 160ms; }
|
||
|
|
.motion-stagger > *:nth-child(6) { animation-delay: 200ms; }
|
||
|
|
.motion-stagger > *:nth-child(7) { animation-delay: 240ms; }
|
||
|
|
.motion-stagger > *:nth-child(8) { animation-delay: 280ms; }
|
||
|
|
.motion-stagger > *:nth-child(9) { animation-delay: 320ms; }
|
||
|
|
.motion-stagger > *:nth-child(10) { animation-delay: 360ms; }
|
||
|
|
.motion-stagger > *:nth-child(n+11) { animation-delay: 400ms; }
|
||
|
|
|
||
|
|
/* Global reduced-motion override */
|
||
|
|
@media (prefers-reduced-motion: reduce) {
|
||
|
|
*,
|
||
|
|
*::before,
|
||
|
|
*::after {
|
||
|
|
animation-duration: 0.01ms !important;
|
||
|
|
animation-iteration-count: 1 !important;
|
||
|
|
transition-duration: 0.01ms !important;
|
||
|
|
scroll-behavior: auto !important;
|
||
|
|
}
|
||
|
|
}
|