This repository has been archived on 2021-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
internet-dhier-et-daujourd-.../assets/css/animate.css

25 lines
532 B
CSS

.animated {
animation-duration: 1s;
animation-fill-mode: both; }
@keyframes slideInDown {
from {
transform: translate3d(0, -100%, 0);
visibility: visible; }
to {
transform: translate3d(0, 0, 0); } }
.slideInDown {
animation-name: slideInDown; }
@keyframes slideOutUp {
from {
transform: translate3d(0, 0, 0); }
to {
visibility: hidden;
transform: translate3d(0, -100%, 0); } }
.slideOutUp {
animation-name: slideOutUp;
animation-duration: 0.5s; }
/*# sourceMappingURL=animate.css.map */