From 448cf4c251cb4d7c7a40da7c8bd942b94a314012 Mon Sep 17 00:00:00 2001 From: obeys Date: Wed, 18 Dec 2024 01:09:33 +0000 Subject: [PATCH] chore: remove 404 styles --- static/style.css | 91 ------------------------------------------------ 1 file changed, 91 deletions(-) diff --git a/static/style.css b/static/style.css index 9948817..228cef9 100644 --- a/static/style.css +++ b/static/style.css @@ -26,94 +26,3 @@ body { text-decoration: none; font-size: 1rem; } - -/* ERROR PAGE STYLES */ - -.err-container { - min-height: 100vh; - display: flex; - justify-content: space-between; - align-items: center; - font-family: "Inter", sans-serif; - width: 100%; - max-width: 1200px; - padding: 2rem; - gap: 2rem; - margin: 0 auto; -} - -.err-content { - flex: 1; -} - -.err-content h1 { - font-size: 2.5rem; - margin-bottom: 1rem; - font-weight: 600; -} - -.err-subtitle { - font-size: 1.2rem; - margin-bottom: 2rem; - opacity: 0.9; -} - -.err-links h2 { - font-size: 1rem; - margin-bottom: 1.5rem; - font-weight: 500; -} - -.err-links-grid { - display: grid; - gap: 1rem; -} - -.err-nav-link { - color: #fff; - text-decoration: none; - font-size: 0.9rem; - opacity: 0.7; - transition: opacity 0.2s ease; -} - -.err-nav-link:hover { - opacity: 1; -} - -.err-code { - font-size: 8rem; - font-weight: 600; - opacity: 0.8; - line-height: 1; -} - -/* Responsive design */ -@media (max-width: 768px) { - .err-container { - flex-direction: column; - text-align: center; - } - - .err-code { - font-size: 6rem; - } - - .err-links-grid { - justify-content: center; - } -} - -@media (max-width: 480px) { - .err-code { - font-size: 4rem; - } - - .err-content h1 { - font-size: 2rem; - } - - .err-subtitle { - font-size: 1rem; - } -}