-
Notifications
You must be signed in to change notification settings - Fork 0
/
horizontal-slider.css
52 lines (44 loc) · 982 Bytes
/
horizontal-slider.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
.horizontal-slider-container {
left: default;
position: relative;
/* __ These attributes can be configured __*/
width: 200px;
height: 20px;
border-radius: 12px;
}
.horizontal-slider-knob {
display: inline-block;
height: 100%;
left: 0;
top: 0;
position: relative;
/* __ These attributes can be configured __*/
width: 20px;
border-radius: 10px;
}
/* -- THEMES -- */
/* Default Grey theme */
hslider .horizontal-slider-container {
border: solid 2px #ccc;
}
hslider .horizontal-slider-knob {
background-color: #777;
}
/* Purple theme */
.purple .horizontal-slider-container {
border: solid 2px #b38ad2;
}
.purple .horizontal-slider-knob {
background-color: #68368d;
}
/* Thin theme */
.thin .horizontal-slider-container {
border:none;
border-bottom: solid 2px #fad8d8;
height: 10px;
border-radius: 0px;
}
.thin .horizontal-slider-knob {
background-color: #F08080;
margin-top:6px;
}