Files
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

16 lines
185 B
CSS

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