sliva/resources/public/css/style.css

20 lines
519 B
CSS
Raw Normal View History

2018-03-20 21:12:42 +01:00
/* some style */
2018-08-11 03:00:13 +02:00
input[type=range] {
margin: 1rem;
width: 80%;
-webkit-appearance: none !important;
height: 20px;
border-radius: 8px;
background: -webkit-gradient(linear,center top, center bottom, from(#CFDCDD),to(#DFE9EA),color-stop(50%,#DFE9EA));
-webkit-transition: background 450ms;
transition: background 450ms;
}
2018-03-20 21:12:42 +01:00
2018-08-11 03:00:13 +02:00
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none !important;
background:#108A93;
height:30px;
width:30px;
border-radius: 15px;
}