From 52d65587bc56cf130f1d517a671e3f7d903aeb68 Mon Sep 17 00:00:00 2001 From: Boof <97455552+hexahigh@users.noreply.github.com> Date: Mon, 28 Nov 2022 13:55:22 +0100 Subject: [PATCH] add animation --- index.html | 2 +- style.css | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 875669c..9a5eefb 100644 --- a/index.html +++ b/index.html @@ -14,7 +14,7 @@

On this website i host games and other stuff.

Contact:

- +

Discord: Boof V2#4806

Email: admin@boof.eu.org

Links

diff --git a/style.css b/style.css index 74c8f4c..adc774b 100644 --- a/style.css +++ b/style.css @@ -21,6 +21,16 @@ background: rgb(0,0,191); background: linear-gradient(225deg, rgba(0,0,191,1) 35%, rgba(0,212,255,1) 100%); } +.animated-back { + animation: animateBg 6s linear infinite; + background-image: linear-gradient(90deg,#00ffff,#0834e2,#00ffff,#0834e2); + background-size: 300% 100%; +} +@keyframes animateBg { + 0% { background-position: 100% 0%; } + 100% { background-position: 0% 0%; } +} + .footer { height: auto;