From db9b221252a373228f27810390da613b24d5b1e5 Mon Sep 17 00:00:00 2001 From: withthelog Date: Mon, 14 Oct 2024 18:09:25 +0200 Subject: [PATCH] modified style.css --- style.css | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/style.css b/style.css index 4b7d49d..daa2fe2 100644 --- a/style.css +++ b/style.css @@ -73,20 +73,18 @@ body { border-radius: 10px; opacity: 0; transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; - z-index: 50; /* Ensure the popup is above the blurred background */ + z-index: 20; /* Ensure the popup is above the blurred background */ } .popup.show { display: block; opacity: 1; transform: translate(-50%, -50%) scale(1); /* Centered and scale effect */ - z-index: 50; } /* Blur effect for body */ .blur { filter: blur(5px); /* Adjust blur strength */ - z-index: 30; } /* Dark overlay for better visibility */ @@ -98,7 +96,7 @@ body { width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */ - z-index: 40; /* Overlay below the popup */ + z-index: 15; /* Overlay below the popup */ } .overlay.show {