apollo_developers/bower_components/animate.css/source/sliding_entrances/slideInDown.css
2018-04-19 11:48:46 +05:30

15 lines
190 B
CSS

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