From 3f7508d1acdb386c555c0251b534b9dc6781322e Mon Sep 17 00:00:00 2001 From: Jan-Lukas Pagel Date: Mon, 20 Mar 2023 19:40:04 +0100 Subject: [PATCH] Initial commit --- index.html | 30 ++++++++++++++++++++++++++++++ main.css | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 index.html create mode 100644 main.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..d82ad98 --- /dev/null +++ b/index.html @@ -0,0 +1,30 @@ + + + + + + Technik Holger + + + + + + + + + + + \ No newline at end of file diff --git a/main.css b/main.css new file mode 100644 index 0000000..f21ecd0 --- /dev/null +++ b/main.css @@ -0,0 +1,32 @@ +@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); + +html, body { + height: 100%; +} + +h1 { + font-family: 'Roboto', sans-serif; + margin: 0; +} + +#header { + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: flex-end; + margin-bottom: 20px; +} + +#navbar { + display: flex; + flex-direction: row; + justify-content: flex-end; +} + +#navbar #element { + font-family: 'Roboto', sans-serif; + margin-right: 10px; + background-color: lightgray; + border-radius: 5px; + padding: 5px 10px 5px 10px; +} \ No newline at end of file