From 5e8d778d3ac74dbb0d9f21ae7fd0147db5d2969e Mon Sep 17 00:00:00 2001 From: abhiramtx <7253115-abhiramtx@users.noreply.replit.com> Date: Sun, 9 Nov 2025 00:09:19 +0000 Subject: [PATCH] Add blur effect and border to the page overlay Adds a semi-transparent background with a blur effect and a subtle border to the ::after pseudo-element of the body in static/css/styles.css. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 75bceff7-98f2-4f6e-ae8e-e735399a1fe8 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 6753aa83-74a2-4f4c-8613-167c4bd28afd Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/d0a1d46d-d203-4308-bc6a-312ac7c0243b/75bceff7-98f2-4f6e-ae8e-e735399a1fe8/KoFNjBb --- static/css/styles.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/static/css/styles.css b/static/css/styles.css index bdef829..3ff784e 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -66,7 +66,11 @@ body::after { display: flex; align-items: center; padding: 16px 32px; - background: transparent; + background: rgba(0, 0, 0, 0.5); + backdrop-filter: blur(12px); + -webkit-backdrop-filter: blur(12px); + border: 1px solid rgba(255, 255, 255, 0.08); + border-radius: 16px; } .navbar-logo {