Skip to content

Instantly share code, notes, and snippets.

@TrevorJTClarke
Created July 22, 2015 16:23
Show Gist options
  • Select an option

  • Save TrevorJTClarke/93a218ae6544a81df0d5 to your computer and use it in GitHub Desktop.

Select an option

Save TrevorJTClarke/93a218ae6544a81df0d5 to your computer and use it in GitHub Desktop.
Sass Range Input Styling (webkit)
input[type=range]{
-webkit-appearance: none;
border: none;
&::-webkit-slider-runnable-track {
width: 250px;
height: 2px;
background: #CCC;
border: none;
border-radius: 1px;
}
&::-webkit-slider-thumb {
-webkit-appearance: none;
border: none;
height: 16px;
width: 16px;
border-radius: 50%;
background: green;
margin-top: -7px;
}
&:focus {
outline: none;
&::-webkit-slider-runnable-track {
background: white;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment