about summary refs log tree commit diff stats
path: root/src/pages/stylesheets/styles.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/stylesheets/styles.css')
-rw-r--r--src/pages/stylesheets/styles.css25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/pages/stylesheets/styles.css b/src/pages/stylesheets/styles.css
index cb632c14..d5452c3d 100644
--- a/src/pages/stylesheets/styles.css
+++ b/src/pages/stylesheets/styles.css
@@ -107,7 +107,32 @@ section.links a.selected {
 }
 
 input[type="range"] {
+  -webkit-appearance: none;
   width: 350px;
+  height: 7px;
+  border-radius: 50px;
+  background: var(--text);
+}
+
+input[type="range"]:hover {
+  background: var(--light-grey);
+}
+
+input[type="range"]::-webkit-slider-thumb {
+  appearance: none;
+  width: 20px;
+  height: 20px;
+  border-radius: 50%;
+  background: var(--active);
+  border: none;
+}
+
+input[type="range"]::-moz-range-thumb {
+  width: 20px;
+  height: 20px;
+  border-radius: 50%;
+  background: var(--active);
+  border: none;
 }
 
 ::placeholder {