about summary refs log tree commit diff stats
path: root/src/pages/stylesheets
diff options
context:
space:
mode:
authorManeraKai <manerakai@protonmail.com>2022-03-13 01:59:27 +0300
committerManeraKai <manerakai@protonmail.com>2022-03-13 01:59:27 +0300
commit1deb226c8a6fb6b98d8df817e143b0c9a07c5be1 (patch)
tree93270b9528bd83520255193c0608b52f78298a1b /src/pages/stylesheets
parentAdded almost all invidious settings #104 (diff)
downloadlibredirect-1deb226c8a6fb6b98d8df817e143b0c9a07c5be1.zip
Refined some styling. Bump version to 1.5.2
Diffstat (limited to 'src/pages/stylesheets')
-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 {