diff --git a/public/s/css/f0ck.css b/public/s/css/f0ck.css index e2507a7..4c379db 100644 --- a/public/s/css/f0ck.css +++ b/public/s/css/f0ck.css @@ -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; @@ -2960,4 +2979,4 @@ button#togglebg { .fader-out { animation: fadeOut .8s steps(100) forwards -} \ No newline at end of file +} \ No newline at end of file