From 1deb226c8a6fb6b98d8df817e143b0c9a07c5be1 Mon Sep 17 00:00:00 2001 From: ManeraKai Date: Sun, 13 Mar 2022 01:59:27 +0300 Subject: Refined some styling. Bump version to 1.5.2 --- src/pages/stylesheets/styles.css | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'src/pages/stylesheets') 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 { -- cgit 1.4.1