From fb3b2e9f971d15ac388dc374a6444c8aa9615f9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20M=C3=B6lle?= Date: Sat, 15 Apr 2023 19:31:03 +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 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/css/skeleton-auto.css b/css/skeleton-auto.css index f1e8a36..5f16103 100644 --- a/css/skeleton-auto.css +++ b/css/skeleton-auto.css @@ -297,3 +297,18 @@ hr { } } +.fadein { + animation-name: fadein; + animation-duration: 3s; + animation-fill-mode: both; + } + +@keyframes fadein { + from { + opacity: 0; + } + + to { + opacity: 1; + } +}