From 1f42acb72690f3925d42752c63349b5dc936957c Mon Sep 17 00:00:00 2001 From: Abu Ottermann Date: Wed, 29 Nov 2023 11:19:01 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A6=85=F0=9F=A6=85=F0=9F=A6=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/s/css/f0ck.css | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) 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