From 23b2f78093786224d880e7b7ee31e552a1d15638 Mon Sep 17 00:00:00 2001
From: Fockskraft
Date: Sat, 2 May 2026 17:50:56 +0200
Subject: [PATCH] Add Navbar with style
---
src/assets/style/main.css | 21 ++++++++++++++++++++-
src/index.html | 11 +++++++++--
2 files changed, 29 insertions(+), 3 deletions(-)
diff --git a/src/assets/style/main.css b/src/assets/style/main.css
index 47d7a26..9c9991c 100644
--- a/src/assets/style/main.css
+++ b/src/assets/style/main.css
@@ -1,7 +1,26 @@
body{
margin: 0;
}
-
+nav{
+ display: flex;
+ justify-content: center;
+ padding: 10px 0;
+ border-bottom: 1px solid #000000;
+}
+nav ul {
+ display: flex;
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ gap: 30px;
+}
+nav a{
+ text-decoration: none;
+ color: black;
+}
+nav a:hover{
+ text-decoration: underline;
+}
header{
text-align: center;
}
diff --git a/src/index.html b/src/index.html
index d41f842..dac4fa4 100644
--- a/src/index.html
+++ b/src/index.html
@@ -23,11 +23,18 @@ limitations under the License.
+