Search
 
SCRIPT & CODE EXAMPLE
 

CSS

-webki slider runnable track

input[type='range'] {
  width: 400px;
}

input[type='range'],
input[type='range']::-webkit-slider-runnable-track,
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type='range']::-webkit-slider-runnable-track {
  height: 3px;
  background: linear-gradient(to right, #293043, #293043), #D7D7D7;
  background-size: var(60%, 0%) 100%;
  background-repeat: no-repeat;
  border-radius: 5px;

}

input[type='range']::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  cursor: pointer;
  background: #293043;
  border: solid white 1px;
  border-radius: 50%;
  margin-top: -6px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
}

/** FF*/

input[type="range"]::-moz-range-progress {
  background-color: #293043;
  border-radius: 5px;
}

input[type="range"]::-moz-range-track {
  background-color: #D7D7D7;
  border-radius: 5px;
}

input[type="range"]::-moz-range-thumb {
  width: 15px;
  height: 15px;
  cursor: pointer;
  background: #293043;
  border: solid white 1px;
  border-radius: 50%;
  margin-top: -6px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
}
Comment

PREVIOUS NEXT
Code Example
Css :: bast css 3d images gallery code 
Css :: bootstrap 
Css :: const Schema 
Css :: andy css reset 
Css :: mb-md-0 bootstrap 
Css :: how can you make us stop our image from the web css html 
Css :: fill div on hover 
Css :: how to reduce the size of png image in css 
Css :: use PurifyCSS with hugo 
Css :: frontend to backend fetching 
Css :: faire des colonnesdef etexte css 
Css :: unable to select text in website css cursor type 
Css :: vue center components in body 
Css :: scss multiple classes same style 
Css :: list style type none still leaves room for bullet 
Css :: alternate table row color css 
Css :: fade color towards top css 
Css :: how to add css to emelemt with add_actions 
Css :: style50 for cs50 
Css :: omnisend custom css 
Css :: hard cutoff gradient 
Css :: Add macOS-esque DropShadow to Images 
Css :: paste in form field cordova app 
Css :: how to use a blank space with grid template areas css 
Css :: best os for programming 
Css :: enlarge icon when hover 
Typescript :: File ng.ps1 cannot be loaded because running scripts is disabled on this system. 
Typescript :: regex only digits and dots 
Typescript :: python program to print the contents of a directory using os module 
Typescript :: flutter network image show loading indicator 
ADD CONTENT
Topic
Content
Source link
Name
2+1 =