From 7d50c39599d24098fdaa412bc53a57a2f6adf5de Mon Sep 17 00:00:00 2001 From: Aki Date: Mon, 5 Apr 2021 22:07:01 +0200 Subject: Added toolbar to html layout --- index.html | 8 ++++++-- style.css | 17 ++++++++++++----- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index b95430d..53d79ec 100644 --- a/index.html +++ b/index.html @@ -5,6 +5,10 @@ Derelict -
- +
+
+
+ +
+
diff --git a/style.css b/style.css index 2be182c..bd1cb01 100644 --- a/style.css +++ b/style.css @@ -11,13 +11,20 @@ body { fill: #eee; } -#container { +#wrapper { + display: flex; width: 100vw; height: 100vh; + flex-direction: column; +} + +#container { + position: relative; + overflow: hidden; + flex-grow: 1; } -#timeline { - position: absolute; - width: 50vw; - bottom: 0px; +#toolbar { + background: #eee; + padding: 1em; } -- cgit v1.1