From 4d4df39b25f610476cc971cb0070a4f1b8fb17ae Mon Sep 17 00:00:00 2001 From: James Barnett Date: Sun, 28 Jan 2018 16:20:51 +0000 Subject: Add dark theme --- style.css | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) (limited to 'style.css') diff --git a/style.css b/style.css index 8b9ab29..891cb76 100644 --- a/style.css +++ b/style.css @@ -4,6 +4,26 @@ body { margin: 0 } +::-webkit-scrollbar { + width: 10px; + height: 10px; +} + +::-webkit-scrollbar-track { + background: #474A5E; +} + +::-webkit-scrollbar-thumb { + background: #63677C; +} + +::-webkit-scrollbar-thumb:hover { + background: #555; +} +::-webkit-scrollbar-corner { + background: #63677C +} + .flex-wrapper { display: flex; flex-flow: column; @@ -12,7 +32,7 @@ body { .flex-wrapper .row.header { flex: 0 1 auto; - background-color: #505050; + background-color: #474A5E; color: white; } @@ -25,7 +45,7 @@ body { .flex-wrapper .row.footer { flex: 0 1 20px; - background-color: #505050; + background-color: #474A5E; color: white; } @@ -34,7 +54,7 @@ body { } .gutter { - background-color: #505050; + background-color: #474A5E; background-repeat: no-repeat; background-position: 50%; } @@ -51,4 +71,10 @@ body { .CodeMirror { height: 100%; +} + +.results-row { + color: #ffffff; + background-color: #282a36; + font-family: monospace; } \ No newline at end of file -- cgit v1.2.3