15 lines
190 B
CSS
Executable File
15 lines
190 B
CSS
Executable File
@keyframes slideInDown {
|
|
0% {
|
|
transform: translateY(-100%);
|
|
visibility: visible;
|
|
}
|
|
|
|
100% {
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.slideInDown {
|
|
animation-name: slideInDown;
|
|
}
|