-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathd3RangeSlider.css
56 lines (46 loc) · 864 Bytes
/
d3RangeSlider.css
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
44
45
46
47
48
49
50
51
52
53
54
.slider-container {
background-color: #f2f2f9;
}
.slider {
position: absolute;
border: 1px solid #AAB;
background: #BCE;
height: 100%;
width: 58px;
top: 0px;
cursor: move;
/*margin:-0.5px;*/
}
.slider .handle {
position: absolute;
height: 9px;
width: 9px;
border: 1px solid #AAB;
background: #9AC;
/* Support for bootstrap */
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.slider .EE {
right: -4px;
cursor: e-resize;
}
.slider .WW {
cursor: w-resize;
left: -4px;
}
.slider .EE, .slider .WW {
top: 50%;
margin-top: -4px;
}
.play-container .button{
fill-opacity: 0.0;
stroke: #AAB;
stroke-width: 1.6;
}
.play-container .play, .play-container .stop {
fill: #BCE;
stroke: #AAB;
stroke-width: 1;
}