From a1edd9221de77fe6df87d39f520a13b8a4f28f4a Mon Sep 17 00:00:00 2001 From: Marty Bostick Date: Wed, 29 Jul 2026 19:17:24 +0000 Subject: [PATCH] =?UTF-8?q?Make=20'Explore=20the=20Calculator'=20button=20?= =?UTF-8?q?pop=20with=20frosted=20glass=20effect=20=E2=80=94=20brighter=20?= =?UTF-8?q?border=20and=20subtle=20blur?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index f9f2f26..15c8bda 100644 --- a/index.html +++ b/index.html @@ -161,13 +161,14 @@ box-shadow: 0 0 45px rgba(245,158,11,0.5); } .hero-btn-secondary { - background: var(--card); + background: rgba(255,255,255,0.06); color: var(--text); - border: 1px solid var(--border); + border: 1.5px solid rgba(255,255,255,0.2); + backdrop-filter: blur(4px); } .hero-btn-secondary:hover { - background: var(--card-hover); - border-color: var(--accent); + background: rgba(255,255,255,0.12); + border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }