aboutsummaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorJames Barnett <noreply@jamesbarnett.xyz>2018-01-28 16:20:51 +0000
committerJames Barnett <noreply@jamesbarnett.xyz>2018-01-28 16:20:51 +0000
commit4d4df39b25f610476cc971cb0070a4f1b8fb17ae (patch)
treecad43a398a04cecb4b9bc19dd28d5f89ba62a300 /style.css
parent447f821d3ca49cc96da59858dbf8d73d895e7060 (diff)
downloadsql-plus-plus-4d4df39b25f610476cc971cb0070a4f1b8fb17ae.tar.xz
sql-plus-plus-4d4df39b25f610476cc971cb0070a4f1b8fb17ae.zip
Add dark theme
Diffstat (limited to 'style.css')
-rw-r--r--style.css32
1 files changed, 29 insertions, 3 deletions
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