fadeIn effect
All checks were successful
fetch npm modules / f0ck the f0cker (push) Successful in 30s

This commit is contained in:
Kibi Kelburton 2023-05-06 13:50:41 +02:00
parent b2c43e18bb
commit a9a5be9fb4

View File

@ -2818,3 +2818,17 @@ ul.navbar-nav-guests li.nav-item {
background: #00000036;
}
}
/* fadeIn effect */
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
img#f0ck-image, div.imageDoor, div.posts a, video {
animation: 1s ease-out 0s 1 fadeIn;
}