From 36d584f238d670752b066ab6b7d11a3ab313f1d0 Mon Sep 17 00:00:00 2001 From: Fockskraft Date: Sat, 2 May 2026 17:19:20 +0200 Subject: [PATCH 1/4] Add Style - Align Items in Center - Make Searchbar widther --- src/index.html | 1 + src/style/main.css | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 src/style/main.css diff --git a/src/index.html b/src/index.html index 57df642..0cd97ee 100644 --- a/src/index.html +++ b/src/index.html @@ -20,6 +20,7 @@ limitations under the License. Seekra +
diff --git a/src/style/main.css b/src/style/main.css new file mode 100644 index 0000000..47d7a26 --- /dev/null +++ b/src/style/main.css @@ -0,0 +1,26 @@ +body{ + margin: 0; +} + +header{ + text-align: center; +} +header h1{ + margin-bottom: 0; +} +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; +} \ No newline at end of file -- 2.39.5 From a79976036a48087a2438ba36244fe29ed05ebb73 Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Sat, 2 May 2026 17:30:56 +0200 Subject: [PATCH 2/4] Change styles directory --- src/{ => assets}/style/main.css | 0 src/index.html | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{ => assets}/style/main.css (100%) diff --git a/src/style/main.css b/src/assets/style/main.css similarity index 100% rename from src/style/main.css rename to src/assets/style/main.css diff --git a/src/index.html b/src/index.html index 0cd97ee..d41f842 100644 --- a/src/index.html +++ b/src/index.html @@ -20,7 +20,7 @@ limitations under the License. Seekra - +
-- 2.39.5 From 23b2f78093786224d880e7b7ee31e552a1d15638 Mon Sep 17 00:00:00 2001 From: Fockskraft Date: Sat, 2 May 2026 17:50:56 +0200 Subject: [PATCH 3/4] 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 8a025a7b8c14b3ec748b82b0eb9c8e4ea01d7195 Mon Sep 17 00:00:00 2001 From: Fockskraft Date: Sat, 2 May 2026 19:41:16 +0200 Subject: [PATCH 4/4] 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