Apply frosted glass background to statistics container

Update .stats-container in static/css/styles.css to use rgba background, backdrop-filter for blur, and a subtle border for a frosted glass effect.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 5e584ab0-c340-4432-97ef-1972582b60e9
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: 12d91265-ada1-43f5-a5fe-39fde35b7e35
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/d0a1d46d-d203-4308-bc6a-312ac7c0243b/5e584ab0-c340-4432-97ef-1972582b60e9/cjdaDml
This commit is contained in:
abhiramtx
2025-11-08 23:26:58 +00:00
parent f608605bb9
commit a5b6db5547
2 changed files with 6 additions and 4 deletions

View File

@@ -455,10 +455,12 @@ hr {
}
.stats-container {
background: transparent;
border: none;
border-radius: 0;
padding: 0;
background: rgba(0, 0, 0, 0.15);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 20px;
padding: 48px;
margin: 48px auto;
}