From f0b94798a4fcf8d4d54cfee397f823aa448b082e Mon Sep 17 00:00:00 2001 From: paidlowered Date: Thu, 19 Feb 2026 18:15:32 -0600 Subject: [PATCH] Blinkies :) --- assets/css/main.scss | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/assets/css/main.scss b/assets/css/main.scss index 3e5b947..99652e8 100644 --- a/assets/css/main.scss +++ b/assets/css/main.scss @@ -273,6 +273,7 @@ blockquote cite::before { .warning { background: rgba(234, 179, 8, 0.12); border-left-color: #eab308; + animation: warning 2s ease 0s infinite normal forwards; } .dark-theme .warning, @@ -306,6 +307,7 @@ blockquote cite::before { .caution { background: rgba(239, 68, 68, 0.1); border-left-color: #ef4444; + animation: warning 2s ease 0s infinite normal forwards; } .dark-theme .caution, @@ -891,3 +893,18 @@ textarea { transition-duration: 0.01ms !important; } } + + +@keyframes warning { + 0% { + opacity: 1; + } + + 50% { + opacity: 0.4; + } + + 100% { + opacity: 1; + } +}