From f216e4b8118ffec5a32269a8b770cc8aa592d133 Mon Sep 17 00:00:00 2001 From: Oxbian Date: Sun, 3 Mar 2024 17:40:39 +0100 Subject: [PATCH] ADD: error page --- 404.html | 73 ++++++++++++++++++++++++++++++++++++++++++ assets/style/style.css | 12 ++++--- index.html | 38 +++++++++++----------- 3 files changed, 101 insertions(+), 22 deletions(-) create mode 100644 404.html diff --git a/404.html b/404.html new file mode 100644 index 0000000..c12507f --- /dev/null +++ b/404.html @@ -0,0 +1,73 @@ + + + + + + + + + + + + + ArKa + + + + +
+ +
+ + +
+   ▄████████    ▄████████    ▄█   ▄█▄    ▄████████ 
+  ███    ███   ███    ███   ███ ▄███▀   ███    ███ 
+  ███    ███   ███    ███   ███▐██▀     ███    ███ 
+  ███    ███  ▄███▄▄▄▄██▀  ▄█████▀      ███    ███ 
+▀███████████ ▀▀███▀▀▀▀▀   ▀▀█████▄    ▀███████████ 
+  ███    ███ ▀███████████   ███▐██▄     ███    ███ 
+  ███    ███   ███    ███   ███ ▀███▄   ███    ███ 
+  ███    █▀    ███    ███   ███   ▀█▀   ███    █▀  
+               ███    ███   ▀                      
+        
+ + + +
+ + +
+
+

╓───── Page not found ─────╖

+
+

This page doesn't exist, go back to the main page:

+ Main page +
+
+
+
+ + + + + diff --git a/assets/style/style.css b/assets/style/style.css index e06fb1b..8c9f506 100644 --- a/assets/style/style.css +++ b/assets/style/style.css @@ -50,8 +50,12 @@ ul { padding: 0; } -/* Navbar & Contact */ -#contact +/* Navbar, Contact, Error */ +#error { + text-align: center; +} + +#contact, #error { margin-top: 2vh; } @@ -62,7 +66,7 @@ nav ul, #contact ul justify-content: center; } -nav a, #contact a +nav a, #contact a, #error a { padding: 0.1rem 1rem; margin: 0rem 0.3rem; @@ -75,7 +79,7 @@ nav a, #contact a background-color: var(--link-bg-color); } -nav a:hover, #contact a:hover +nav a:hover, #contact a:hover, #error a:hover { color: var(--link-bg-color); background-color: var(--link-color); diff --git a/index.html b/index.html index cdacf0c..b1839ec 100644 --- a/index.html +++ b/index.html @@ -9,6 +9,7 @@ + @@ -39,7 +40,7 @@