From c207b7844c630e694e742c5de2ac6eae407ea818 Mon Sep 17 00:00:00 2001 From: Tiago Brito <69848652+britotiago03@users.noreply.github.com> Date: Fri, 10 May 2024 05:14:36 +0200 Subject: [PATCH] Implemented NotFound.css --- frontend/src/css/NotFound.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 frontend/src/css/NotFound.css diff --git a/frontend/src/css/NotFound.css b/frontend/src/css/NotFound.css new file mode 100644 index 0000000..afa349d --- /dev/null +++ b/frontend/src/css/NotFound.css @@ -0,0 +1,24 @@ +.not-found-container { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + height: 80vh; /* Adjust the height based on your header and footer */ + text-align: center; +} + +.not-found-container h1 { + font-size: 80px; + color: #007BFF; +} + +.not-found-container h2 { + font-size: 36px; + color: #333; +} + +.not-found-container p { + font-size: 16px; + color: #666; + margin-top: 20px; +} -- GitLab