Files
web-dev/fast-api/bower_components/animate.css/source/fading_entrances/fadeInRight.css
2020-02-17 02:37:02 +00:00

16 lines
194 B
CSS

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