From 0b3224192f04334f66050c34a5191543da5580d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CRedskullvue=E2=80=9D?= Date: Sat, 27 Sep 2025 16:23:17 +0330 Subject: [PATCH] feat : add WarningFlash animation --- animate.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/animate.css b/animate.css index adaab2fb3..f7e4a7117 100644 --- a/animate.css +++ b/animate.css @@ -4072,3 +4072,29 @@ -webkit-animation-name: slideOutUp; animation-name: slideOutUp; } +@keyframes WarningFlash { + 0% { + text-shadow: + 0 0 10px rgba(255, 200, 0, 0.3), + 0 0 20px rgba(255, 200, 0, 0.2), + 0 0 30px rgba(255, 200, 0, 0.1); + } + + 50% { + text-shadow: + 0 0 20px #fff700, + 0 0 40px #ffe347, + 0 0 60px #ffcc00; + } + + 100% { + text-shadow: + 0 0 10px rgba(255, 200, 0, 0.3), + 0 0 20px rgba(255, 200, 0, 0.2), + 0 0 30px rgba(255, 200, 0, 0.1); + } +} +.animate__WarningFlash{ + -webkit-animation-name:WarningFlash ; + animation-name:WarningFlash; +} \ No newline at end of file