Files
2020-02-17 02:37:02 +00:00

9 lines
104 B
CSS

@keyframes fadeOut {
0% {opacity: 1;}
100% {opacity: 0;}
}
.fadeOut {
animation-name: fadeOut;
}