16 lines
212 B
CSS
Vendored
16 lines
212 B
CSS
Vendored
@keyframes fadeInUpBig {
|
|
from {
|
|
opacity: 0;
|
|
transform: translate3d(0, 2000px, 0);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
}
|
|
|
|
.fadeInUpBig {
|
|
animation-name: fadeInUpBig;
|
|
}
|