mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-06 03:50:04 +02:00
20 lines
271 B
CSS
20 lines
271 B
CSS
@keyframes backInUp {
|
|
0% {
|
|
transform: translateY(1200px) scale(0.7);
|
|
opacity: 0.7;
|
|
}
|
|
|
|
80% {
|
|
transform: translateY(0px) scale(0.7);
|
|
opacity: 0.7;
|
|
}
|
|
|
|
100% {
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.backInUp {
|
|
animation-name: backInUp;
|
|
}
|