„css/skeleton-auto.css“ ändern

This commit is contained in:
Yann Mölle 2023-04-15 19:31:03 +02:00
parent 29bb15538f
commit fb3b2e9f97

View File

@ -297,3 +297,18 @@ hr {
} }
} }
.fadein {
animation-name: fadein;
animation-duration: 3s;
animation-fill-mode: both;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}