From ea4f412ee095dab98c556ed8c44c868ea677172f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20M=C3=B6lle?= Date: Sat, 15 Apr 2023 19:43:58 +0200 Subject: [PATCH] =?UTF-8?q?=E2=80=9Ecss/skeleton-auto.css=E2=80=9C=20?= =?UTF-8?q?=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/skeleton-auto.css | 38 +------------------------------------- 1 file changed, 1 insertion(+), 37 deletions(-) diff --git a/css/skeleton-auto.css b/css/skeleton-auto.css index bed4811..d0f68ba 100644 --- a/css/skeleton-auto.css +++ b/css/skeleton-auto.css @@ -277,41 +277,5 @@ hr { } .animate-top{position:relative;animation:animatetop 0.8s}@keyframes animatetop{from{top:-25px;opacity:0} to{top:0;opacity:1}} +.animate-zoom {animation:animatezoom 0.6s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}} -/* Entrance animations -–––––––––––––––––––––––––––––––––––––––––––––––––– */ - -.button-entrance { - animation-name: popUp; - animation-duration: 1s; - animation-fill-mode: both; - /* Used to start button entrance animation one after another */ - animation-delay: calc(var(--delay)/10); - } - -@keyframes popUp { - from { - opacity: 0; - transform: scale3d(0.3, 0.3, 0.3); - } - - 50% { - opacity: 1; - } -} - -.fadein { - animation-name: fadein; - animation-duration: 3s; - animation-fill-mode: both; - } - -@keyframes fadein { - from { - opacity: 0; - } - - to { - opacity: 1; - } -}