From dd5666643520b7b5ca92b957f1f616bb31bb8443 Mon Sep 17 00:00:00 2001 From: KGFCH2 Date: Wed, 27 May 2026 03:38:45 +0530 Subject: [PATCH] style: add interactive glassmorphism hover states and focus indicator styles --- style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/style.css b/style.css index 2320e09..588f7da 100644 --- a/style.css +++ b/style.css @@ -393,6 +393,13 @@ h1 span { max-width: 900px; margin-left: auto; margin-right: auto; + transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease; +} + +.scanner-card:hover { + transform: translateY(-2px); + border-color: var(--accent-1); + box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); } .input-row {