From 00e06a9ea8c4b8de44279949b2143811651048a3 Mon Sep 17 00:00:00 2001 From: gauriagwl864 Date: Mon, 26 Jan 2026 17:29:17 +0530 Subject: [PATCH] Simplify 404 page UI and align with site design --- DISCOVER/404.html | 49 ++++++++++++++--------------------------------- 1 file changed, 14 insertions(+), 35 deletions(-) diff --git a/DISCOVER/404.html b/DISCOVER/404.html index 543b5734b..49b54bd4f 100644 --- a/DISCOVER/404.html +++ b/DISCOVER/404.html @@ -12,55 +12,33 @@ } body { height: 100vh; - background: linear-gradient(135deg, black, #e4f0ff); + background: #f9fafb; display: flex; align-items: center; justify-content: center; font-family: 'Segoe UI', sans-serif; - overflow: hidden; - position: relative; - } - - .light-blur { - position: absolute; - width: 500px; - height: 500px; - background: radial-gradient(circle at center, transparent); - border-radius: 50%; - filter: blur(80px); - top: 20%; - left: 10%; - animation: drift 10s ease-in-out infinite alternate; - z-index: 0; - } - - @keyframes drift { - 0% { transform: translate(0, 0); } - 100% { transform: translate(60px, 30px); } } .glass-card { - background: rgba(255, 255, 255, 0.25); - backdrop-filter: blur(12px); - -webkit-backdrop-filter: blur(12px); + background: #ffffff; + border: 1px solid #e5e7eb; + border-radius: 12px; + width: 90%; padding: 2.5rem 3rem; - border-radius: 20px; - border: 1px solid rgba(255, 255, 255, 0.3); max-width: 500px; text-align: center; z-index: 1; - box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); } h1 { font-size: 2.5em; - color: rgb(52, 51, 51); + color: #111827; margin-bottom: 0.5rem; } p { font-size: 1.1em; - color: rgb(52, 51, 51); + color: #4b5563; margin-bottom: 1.4rem; } @@ -70,14 +48,16 @@ padding: 0.6rem 1rem; border-radius: 8px; text-decoration: none; - background: #d0bfff; color: #1f1f1f; - font-weight: 600; + background: #e5e7eb; + color: #111827; + font-weight: 500; + transition: background 0.3s ease; } a:hover { - background: #c1aaff; + background:#d1d5db; } select { @@ -91,13 +71,12 @@ -

404 - Page Not Found

This page might’ve wandered off or was never here at all.

Maybe it was deleted, renamed, or never existed in the first place.

What can you do?

- ⬅️ Back to Home + ⬅️ Back to Home 🐞 Report the Issue
@@ -151,7 +130,6 @@

404 - Page Not Found

document.getElementById("title").textContent = t.title; document.getElementById("message").textContent = t.message; document.getElementById("suggestion").textContent = t.suggestion; - document.getElementById("what-do").textContent = t.whatDo; document.getElementById("home").textContent = t.home; document.getElementById("report").textContent = t.report; document.getElementById("footer").textContent = t.footer; @@ -168,3 +146,4 @@

404 - Page Not Found

+