From 23b2f78093786224d880e7b7ee31e552a1d15638 Mon Sep 17 00:00:00 2001 From: Fockskraft Date: Sat, 2 May 2026 17:50:56 +0200 Subject: [PATCH 1/9] 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. +

Seekra

-
+

Built to search. -

+

-- 2.39.5 From b564a5146e19e62ebf219a3682681259aa4d0332 Mon Sep 17 00:00:00 2001 From: Fockskraft Date: Sat, 2 May 2026 19:45:31 +0200 Subject: [PATCH 2/9] Create a seperate stylesheet for navabar --- src/assets/style/navbar.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/assets/style/navbar.css diff --git a/src/assets/style/navbar.css b/src/assets/style/navbar.css new file mode 100644 index 0000000..317191a --- /dev/null +++ b/src/assets/style/navbar.css @@ -0,0 +1,20 @@ +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; +} -- 2.39.5 From 83be71821ff3e5496c55b0e5f06cb5fd2cd72094 Mon Sep 17 00:00:00 2001 From: Fockskraft Date: Sat, 2 May 2026 19:48:55 +0200 Subject: [PATCH 3/9] Add link to navbar.css --- src/index.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/index.html b/src/index.html index dac4fa4..a9a3ce4 100644 --- a/src/index.html +++ b/src/index.html @@ -21,15 +21,17 @@ limitations under the License. Seekra + +

Seekra

-- 2.39.5 From c93215e241a2e0b61b5337047d9a560b00f33d19 Mon Sep 17 00:00:00 2001 From: Fockskraft Date: Sat, 2 May 2026 19:51:34 +0200 Subject: [PATCH 4/9] Update navbar styles --- src/assets/style/navbar.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/assets/style/navbar.css b/src/assets/style/navbar.css index 317191a..6cfb302 100644 --- a/src/assets/style/navbar.css +++ b/src/assets/style/navbar.css @@ -4,6 +4,7 @@ nav{ padding: 10px 0; border-bottom: 1px solid #000000; } + nav ul { display: flex; list-style: none; @@ -11,10 +12,12 @@ nav ul { padding: 0; gap: 30px; } + nav a{ text-decoration: none; color: black; } + nav a:hover{ text-decoration: underline; } -- 2.39.5 From 02ee937ac98011e86dad7c98d40f97c2fda36c0e Mon Sep 17 00:00:00 2001 From: Fockskraft Date: Sat, 2 May 2026 19:54:51 +0200 Subject: [PATCH 5/9] Remove nav style from main.css --- src/assets/style/main.css | 34 ++++++++++------------------------ 1 file changed, 10 insertions(+), 24 deletions(-) diff --git a/src/assets/style/main.css b/src/assets/style/main.css index 9c9991c..bd156f4 100644 --- a/src/assets/style/main.css +++ b/src/assets/style/main.css @@ -1,44 +1,30 @@ -body{ +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{ + +header { text-align: center; } -header h1{ + +header h1 { margin-bottom: 0; } -form{ + +form { display: flex; justify-content: center; margin-top: 20px; width: 100%; } + form button{ margin-left: 10px; } + form input{ width: 80%; } + footer{ text-align: center; margin-top: 20px; -- 2.39.5 From ab37ca4137773974373bfc30ea0420d9aa7a8d40 Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Sat, 2 May 2026 23:08:57 +0200 Subject: [PATCH 6/9] Update directory structure for stylesheets --- src/assets/style/{ => nav/navbar}/navbar.css | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/assets/style/{ => nav/navbar}/navbar.css (100%) diff --git a/src/assets/style/navbar.css b/src/assets/style/nav/navbar/navbar.css similarity index 100% rename from src/assets/style/navbar.css rename to src/assets/style/nav/navbar/navbar.css -- 2.39.5 From 0f20b52aa91f6507e4d769d96cc46139e722134e Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Sat, 2 May 2026 23:11:20 +0200 Subject: [PATCH 7/9] Update directory structure for stylesheets --- src/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.html b/src/index.html index a9a3ce4..bc75a05 100644 --- a/src/index.html +++ b/src/index.html @@ -21,7 +21,7 @@ limitations under the License. Seekra - +