1
0
mirror of https://github.com/S2-/gitlit synced 2025-08-05 13:40:08 +02:00
Files
gitlit/app/node_modules/animate.css/source/lightspeed/lightSpeedIn.css
2019-06-06 15:44:24 +02:00

25 lines
350 B
CSS

@keyframes lightSpeedIn {
from {
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
transform: skewX(20deg);
opacity: 1;
}
80% {
transform: skewX(-5deg);
}
to {
transform: translate3d(0, 0, 0);
}
}
.lightSpeedIn {
animation-name: lightSpeedIn;
animation-timing-function: ease-out;
}