summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-05-12 18:34:58 +0200
committerMatthias Beyer <mail@beyermatthias.de>2020-05-12 18:34:58 +0200
commit6401c0ec505a9e8d7119928879cd8f97a3699239 (patch)
treee300df789f0c3d78c5d6b44d252a7cc4096dbddb
parent428fa2f35212e6cb2403427a71f31658dc0b9425 (diff)
Add style for sidebars
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--assets/style.css21
1 files changed, 21 insertions, 0 deletions
diff --git a/assets/style.css b/assets/style.css
index 6ce29f4..120b1bd 100644
--- a/assets/style.css
+++ b/assets/style.css
@@ -2,3 +2,24 @@ body {
background-color: black;
}
+#sidebar_left {
+ background-color: grey;
+ height: 100%;
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 10%;
+ min-width: 15em;
+ float: left;
+}
+
+#sidebar_right {
+ background-color: grey;
+ height: 100%;
+ position: fixed;
+ top: 0;
+ right: 0;
+ width: 10%;
+ min-width: 15em;
+ float: right;
+}