diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2018-01-28 16:20:51 +0000 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2018-01-28 16:20:51 +0000 |
| commit | 4d4df39b25f610476cc971cb0070a4f1b8fb17ae (patch) | |
| tree | cad43a398a04cecb4b9bc19dd28d5f89ba62a300 /style.css | |
| parent | 447f821d3ca49cc96da59858dbf8d73d895e7060 (diff) | |
| download | sql-plus-plus-4d4df39b25f610476cc971cb0070a4f1b8fb17ae.tar.xz sql-plus-plus-4d4df39b25f610476cc971cb0070a4f1b8fb17ae.zip | |
Add dark theme
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 32 |
1 files changed, 29 insertions, 3 deletions
@@ -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 |