Files
ms1inscription-v5/libs/animate.css-3.7.2/source/sliding_entrances/slideInDown.css
2026-05-13 09:43:32 -04:00

15 lines
204 B
CSS

@keyframes slideInDown {
from {
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
animation-name: slideInDown;
}