From 8bc96e496754e1df544c61602b644018d25b77c6 Mon Sep 17 00:00:00 2001 From: cardboardlamb Date: Tue, 1 Nov 2022 15:33:15 +0100 Subject: [PATCH] tryna make the the star also be glowing --- css/animation.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/css/animation.css b/css/animation.css index 2d70fe3..ace468a 100644 --- a/css/animation.css +++ b/css/animation.css @@ -17,3 +17,12 @@ 100% { filter: drop-shadow(-10px 10px 66px white); } +.star{ + animation: colorchange 4.5s infinite alternate-reverse; +} + +@keyframes colorchange { + 0% { filter: drop-shadow(-30px 30px 50px white); } + 100% { filter: drop-shadow(-10px 10px 66px white); } + +