diff --git a/index.html b/index.html index 6eb16fc..e93c795 100644 --- a/index.html +++ b/index.html @@ -8,23 +8,34 @@ -
- 3D-LiDAR Visualisierung - - + - - - -
- + + + +
+
+
\ No newline at end of file diff --git a/logoJadeHs.png b/logoJadeHs.png index e1d4cac..aedc74e 100644 Binary files a/logoJadeHs.png and b/logoJadeHs.png differ diff --git a/style.css b/style.css index c596b8c..b840dc1 100644 --- a/style.css +++ b/style.css @@ -1,50 +1,65 @@ -body { - padding: 0; -} - - -#title { - text-align: center; - font-size:xx-large; - font-family:'Trebuchet MS'; - font-weight: bold; - width: 50%; - padding: 15px; - margin: auto; -} - - -h1 { - font-family:'Trebuchet MS'; +html, body { + height: 100%; margin: 0; - text-align: center; -} - -#logoJadeHs{ - position: fixed; - top: 1%; - right: 10%; - width: 128px; - height: 69px; - transform-origin: center center; - z-index: 0; } -#logoLbeg{ - position: fixed; - top: 1%; - right: 1%; - width: 128px; - height: 69px; - transform-origin: center center; - z-index: 0; +body { + margin: 0; + height: 100vh; + display: grid; + grid-template-rows: 80px 1fr; + grid-template-columns: 250px 1fr; + grid-template-areas: + "header header" + "sidebar main"; + font-family: 'Trebuchet MS'; } + +#header { + color: white; + grid-area: header; + display: flex; + align-items: center; + justify-content: center; + position: relative; + font-size: 28px; + font-weight: bold; + background: rgb(0, 0, 0); +} + + +.logos { + position: absolute; + bottom: 20px; + display: flex; + gap: 10px; +} + +.logos img { + width: 100px; + height: auto; +} + + +#sidebar { + grid-area: sidebar; + padding: 20px; + background: #eeeeee; + display: flex; + flex-direction: column; + gap: 15px; +} + + +#main { + grid-area: main; + position: relative; +} + + #map { - width: 85%; - height: 90%; - position: fixed; - right: 0%; - bottom: 0%; + width: 100%; + height: 100%; } \ No newline at end of file