apollo_developers/bower_components/animate.css/source/sliding_entrances/slideInDown.css
venbatechnologies@gmail.com 1809bcf9c9 fixed table for student details
2018-04-23 18:34:11 +05:30

15 lines
190 B
CSS
Executable File

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