-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimpleSlider.css
More file actions
43 lines (40 loc) · 794 Bytes
/
simpleSlider.css
File metadata and controls
43 lines (40 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
.slider {
height:20px;
width:200px;
background-color:#ccc;
margin:20px auto;
position:relative;
cursor:move;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.slider .handle {
position:absolute;
background-color:#bbb;
border-radius:20px;
width:40px;
height:40px;
top:-10px;
left:-20px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.slider:hover .handle, .handle.selected {
background-color:white;
border:1px solid black;
}
.slider .fill {
position:absolute;
left:0;
top:0;
width:0;
height:20px;
}