From 6e4cb4f3046f9862da2f0c92719b54f048d292d7 Mon Sep 17 00:00:00 2001 From: hbyang Date: Thu, 8 Jan 2026 17:36:32 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B2=84=ED=8A=BC=20=EB=B0=98=EC=A7=9D?= =?UTF-8?q?=EC=9E=84=20=ED=9A=A8=EA=B3=BC=20=EC=A0=81=EC=9A=A9=20.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/index.css b/index.css index 6255a74..2e705bb 100644 --- a/index.css +++ b/index.css @@ -2322,10 +2322,22 @@ transition: all var(--transition-normal); border: none; cursor: pointer; + animation: button-glow 1.5s ease-in-out infinite; +} + +@keyframes button-glow { + 0%, 100% { + box-shadow: 0px 4px 24px 0px rgba(174, 114, 249, 0.5); + } + 50% { + box-shadow: 0px 4px 28px 0px rgba(174, 114, 249, 0.8), 0px 0px 16px 0px rgba(166, 255, 234, 0.4); + } } .hero-button:hover { background-color: #9a5ef0; + animation: none; + box-shadow: 0px 4px 32px 0px rgba(174, 114, 249, 0.6); } .hero-button:active {