en.javascript.info/2-ui/3-event-details/4-mouse-drag-and-drop/1-slider/source.view/style.css
Ilya Kantor ab9ab64bd5 up
2017-03-21 14:41:49 +03:00

19 lines
316 B
CSS

.slider {
border-radius: 5px;
background: #E0E0E0;
background: linear-gradient(left top, #E0E0E0, #EEEEEE);
width: 310px;
height: 15px;
margin: 5px;
}
.thumb {
width: 10px;
height: 25px;
border-radius: 3px;
position: relative;
left: 10px;
top: -5px;
background: blue;
cursor: pointer;
}