From 8e2935bb4604a6c3b724b7b1ed5281bcd0eb0e89 Mon Sep 17 00:00:00 2001 From: abhiramtx <7253115-abhiramtx@users.noreply.replit.com> Date: Sat, 8 Nov 2025 23:18:36 +0000 Subject: [PATCH] Update styling for stats cards to improve appearance and visibility Modify background and border properties of .stats-card and .stats-card:hover in static/css/styles.css. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 5e584ab0-c340-4432-97ef-1972582b60e9 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: f1af16b0-3836-47e8-a414-cd5c30acadaa Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/d0a1d46d-d203-4308-bc6a-312ac7c0243b/5e584ab0-c340-4432-97ef-1972582b60e9/FuwDdkb --- static/css/styles.css | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/static/css/styles.css b/static/css/styles.css index 162803e..d5c7320 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -472,16 +472,14 @@ hr { .stats-card { text-align: center; padding: 32px; - background: rgba(0, 0, 0, 0.4); - backdrop-filter: blur(12px); - -webkit-backdrop-filter: blur(12px); - border-radius: 16px; + background: rgba(26, 26, 26, 0.4); border: 1px solid rgba(255, 255, 255, 0.08); + border-radius: 16px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .stats-card:hover { - background: rgba(0, 0, 0, 0.5); + background: rgba(26, 26, 26, 0.6); transform: translateY(-4px); box-shadow: 0 12px 24px rgba(255, 255, 255, 0.05); }