2025-11-02 14:35:35 +03:00

14 lines
121 B
CSS

@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
animation-name: fadeOut;
}