From 7e5a13b66fc6c32daca12e58f93bdd670a63ea4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20M=C3=B6lle?= Date: Fri, 14 Apr 2023 20:16:05 +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 | 42 ------------------------------------------ 1 file changed, 42 deletions(-) diff --git a/css/skeleton-auto.css b/css/skeleton-auto.css index 4102be1..27a1c9b 100644 --- a/css/skeleton-auto.css +++ b/css/skeleton-auto.css @@ -261,45 +261,3 @@ hr { } -@keyframes rotate { - 0% { - transform: rotate(0deg); - } - 100% { - transform: rotate(360deg); - } -} - -.gradient { - --size: 250px; - --speed: 50s; - --easing: cubic-bezier(0.8, 0.2, 0.2, 0.8); - - width: var(--size); - height: var(--size); - filter: blur(calc(var(--size) / 5)); - background-image: linear-gradient(hsl(158, 82, 57, 85%), hsl(252, 82, 57)); - animation: rotate var(--speed) var(--easing) alternate infinite; - border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; -} - -@media (min-width: 720px) { - .gradient { - --size: 500px; - } -} - -body { - background-color: #222; - position: absolute; - inset: 0; - display: flex; - place-content: center; - align-items: center; - overflow: hidden; -} - -/* This is just to transition when you change the viewport size. */ -* { - transition: all 0.25s ease-out; -}