🦅🦅🦅
All checks were successful
fetch npm modules / f0ck the f0cker (push) Successful in 18s

This commit is contained in:
Kibi Kelburton 2023-11-29 11:19:01 +01:00
parent 6e561071ee
commit 1f42acb726

View File

@ -698,7 +698,7 @@ html[theme='f0ck95'] {
--img-border-width: 0;
--img-border-color: #808080;
--maximize_button: #000;
--bg-gradient: linear-gradient(0deg, rgba(0, 0, 0, 0) rgba(0, 0, 0, 0), 0) 1rgba(6, 38, 49, 0)2631 100%);
--bg-gradient: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 10%, #062631 100%);
/* appearance */
background: teal;
}
@ -2838,7 +2838,7 @@ ul.navbar-nav-guests li.nav-item {
}
img#f0ck-image, div.imageDoor, div.posts a, video {
animation: 1s ease-out 0s 1 fadeIn;
animation: 1s ease-out 0s 1 fadeInFx;
}
/* f0ckgle */
@ -2936,6 +2936,25 @@ button#togglebg {
border: 0;
}
@keyframes fadeInFX {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeOutFX {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeIn {
0% {
opacity: 0;