Files
web-dev/fast-api/bower_components/animate.css/source/sliding_entrances/slideInDown.css
2020-02-17 02:37:02 +00:00

15 lines
204 B
CSS

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