<input type="range">
html,body{
margin: 0;
height: 100%;
display: grid;
place-content: center;
}
body{
background: linear-gradient(45deg, #00bcd4, #cddc39)
}
[type="range"] {
appearance: none;
appearance: none;
margin: 0;
outline: 0;
background-color: transparent;
width: 300px;
}
[type="range"]::slider-runnable-track {
height: 4px;
background: #eee;
}
[type="range" i]::slider-container {
height: 20px;
overflow: hidden;
}
[type="range"]::slider-thumb {
appearance: none;
appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background-color: #f44336;
border: 1px solid transparent;
margin-top: -8px;
border-image: linear-gradient(#f44336,#f44336) 0 fill / 8 20 8 0 / 0px 0px 0 2000px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.