From 69fb46815290c29dc9b8e4e889b5d2f09b0fae40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20M=C3=B6lle?= Date: Mon, 29 May 2023 15:20:41 +0200 Subject: [PATCH] =?UTF-8?q?=E2=80=9Ecss/back.css=E2=80=9C=20l=C3=B6schen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/back.css | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 css/back.css diff --git a/css/back.css b/css/back.css deleted file mode 100644 index 51a8cf8..0000000 --- a/css/back.css +++ /dev/null @@ -1,34 +0,0 @@ -@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%; - z-index: -100; -} - -@media (min-width: 720px) { - .gradient { - --size: 500px; - } -} - - -/* This is just to transition when you change the viewport size. */ -* { - transition: all 0.25s ease-out; -} \ No newline at end of file