1
0
mirror of https://github.com/S2-/gitlit synced 2025-08-03 04:40:05 +02:00
Files
gitlit/app/node_modules/animate.css/source/fading_exits/fadeOutDown.css
2018-10-10 15:11:12 +02:00

15 lines
173 B
CSS

@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
animation-name: fadeOutDown;
}