From 36d584f238d670752b066ab6b7d11a3ab313f1d0 Mon Sep 17 00:00:00 2001 From: Fockskraft Date: Sat, 2 May 2026 17:19:20 +0200 Subject: [PATCH] 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