From cd6d75a076141ea68ce8725ea2ef5b89a02d2f7b Mon Sep 17 00:00:00 2001 From: Nazar Kanaev Date: Fri, 31 Jul 2020 20:55:54 +0100 Subject: [PATCH] basic themes --- template/index.html | 20 +++++++++++--------- template/static/stylesheets/app.css | 15 +++++++++++++++ 2 files changed, 26 insertions(+), 9 deletions(-) diff --git a/template/index.html b/template/index.html index 2aee0ed..c944b85 100644 --- a/template/index.html +++ b/template/index.html @@ -8,7 +8,8 @@ -
+
+
@@ -312,13 +313,14 @@
- - - - - - - - +
+ + + + + + + + diff --git a/template/static/stylesheets/app.css b/template/static/stylesheets/app.css index 4b050ec..3facf1b 100644 --- a/template/static/stylesheets/app.css +++ b/template/static/stylesheets/app.css @@ -434,3 +434,18 @@ select.form-control:not([multiple]):not([size]) { border-left: 3px solid #22262a; padding-left: 1rem; } + +/* theme */ + +.theme-light { + +} + +.theme-sepia { + background-color: yellow; +} + +.theme-night { + background-color: black; + color: white; +}