summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-03-03 14:39:54 +0300
committerAndrew Dolgov <[email protected]>2019-03-03 14:39:54 +0300
commit3c0d5f04218442a9c7ffdd087a501badf654fe08 (patch)
tree17635cc5c75b1b80e488dd77e0d06baf476dcd38 /css
parentee83cd78c05e39f2f55228da8a3196cb9b4bea64 (diff)
set scrollbar styles
Diffstat (limited to 'css')
-rw-r--r--css/index.css17
1 files changed, 17 insertions, 0 deletions
diff --git a/css/index.css b/css/index.css
index 948768f..0a8cdd4 100644
--- a/css/index.css
+++ b/css/index.css
@@ -30,3 +30,20 @@
overflow : auto;
}
+::selection {
+ background : #007d71;
+ color : white;
+}
+
+::-webkit-scrollbar {
+ width: 4px;
+}
+
+::-webkit-scrollbar-thumb {
+ background-color: #007d71;
+}
+
+::-webkit-scrollbar-track {
+ background-color: #eee;
+}
+