You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
278 B
21 lines
278 B
3 months ago
|
@keyframes backInLeft {
|
||
|
0% {
|
||
|
transform: translateX(-2000px) scale(0.7);
|
||
|
opacity: 0.7;
|
||
|
}
|
||
|
|
||
|
80% {
|
||
|
transform: translateX(0px) scale(0.7);
|
||
|
opacity: 0.7;
|
||
|
}
|
||
|
|
||
|
100% {
|
||
|
transform: scale(1);
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.backInLeft {
|
||
|
animation-name: backInLeft;
|
||
|
}
|