range-slider.css 742 Bytes
Newer Older
1 2 3 4
.range {
  width: 400px;
}
.range .range-slider {
5 6
  position: relative;
}
7
.range .range-slider .scale {
8
  position: absolute;
9 10 11 12 13 14 15 16 17 18
  width: 100%;
  height: 3px;
  margin-top: 2px;
  background-color: #d8d8d8;
}
.range .range-slider .scale-sel {
  position: absolute;
  background-color: #27c470;
  width: 100%;
  height: 7px;
19
}
20
.range .range-slider .knob {
21
  position: absolute;
22
  cursor: pointer;
23 24 25 26 27
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -o-user-select: none;
28 29 30
  margin-top: -4px;
  z-index: 1;
  box-shadow: 1px 1px 3px grey;
31
}
32
.range .range-slider .knob .button {
33
  margin-top: -3px;
34 35 36
  background: #eee;
  width: 30px;
  height: 20px;
37
}
38 39

/*# sourceMappingURL=range-slider.css.map */