aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/css
diff options
context:
space:
mode:
authorMarvin Borner2019-05-13 18:18:57 +0200
committerMarvin Borner2019-05-13 18:18:57 +0200
commitb9a392f5f1db5c7de60e929fdcc0ca42885f81ca (patch)
tree0f9aa014bcabfc3d7205898ada71f15d4490cb0a /src/main/resources/css
parent72073df2c225f96889620e30c963dd807ca01a90 (diff)
Added user based dark theme support
Co-authored-by: LarsVomMars <lars@kroenner.eu>
Diffstat (limited to 'src/main/resources/css')
-rw-r--r--src/main/resources/css/darkLayout.css32
-rw-r--r--src/main/resources/css/index.css6
2 files changed, 38 insertions, 0 deletions
diff --git a/src/main/resources/css/darkLayout.css b/src/main/resources/css/darkLayout.css
new file mode 100644
index 0000000..71172a5
--- /dev/null
+++ b/src/main/resources/css/darkLayout.css
@@ -0,0 +1,32 @@
+/**
+ Main
+ */
+body {
+ background-color: #181a1b;
+}
+
+.main {
+ color: #d0cdc6
+}
+
+button {
+ text-decoration-color: initial;
+ background-color: #3d4043;
+ border-top-color: #595959;
+ border-right-color: #595959;
+ border-bottom-color: #595959;
+ border-left-color: #595959;
+ color: #ffffff;
+}
+
+input {
+ border-color: #575757;
+ color: #e8e6e3;
+}
+
+/**
+ Other stuff
+ */
+tr:hover {
+ background-color: #121516 !important;
+}
diff --git a/src/main/resources/css/index.css b/src/main/resources/css/index.css
new file mode 100644
index 0000000..5cf3c78
--- /dev/null
+++ b/src/main/resources/css/index.css
@@ -0,0 +1,6 @@
+.toggle {
+ position: absolute;
+ margin: 20px;
+ right: 0;
+ top: 0;
+}