tom
2023-12-06 9e968679ed2e6937aeb7b50a6c450d5d19251f42
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
.slider-container {
  margin:0 auto;
  box-sizing:border-box;
  width:100%;
  padding:24px 0 36px 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.slider-container .back-bar {
  height: 10px;
  position: relative;
  border-radius:3px;
  background: #E0E0E0;
}
 
.slider-container .back-bar .selected-bar {
  position: absolute;
  height: 100%;
  border-radius:3px;
  background: #0090FF;
}
.slider-container .back-bar .pointer {
  position: absolute;
  top:-5px;
  width: 18px;
  height: 18px;
  border: #0090FF 1px solid;
  border-radius:10px;
  background: #E0F0FF;
  z-index: 2;
  box-shadow:1px 1px 2px #C0C0C0;
}
.slider-container .back-bar .pointer.last-active {
  z-index: 3;
}
.slider-container .back-bar .pointer-label {
  position: absolute;
  top: -20px;
  font-size: 12px;
  color:#0090FF;
  white-space: nowrap;
  line-height: 1;
}
.slider-container .back-bar .focused {
  z-index: 10;
}
 
.slider-container .clickable-dummy {
  position: absolute;
  box-sizing:border-box;
  top:-10px;
  height:40px;
  width: 100%;
  z-index: 1;
}
.slider-container .scale {
  top: 6px;
  position: relative;
}
.slider-container .scale span {
  position: absolute;
  height: 5px;
  border-left: 1px solid #999;
  font-size: 0;
}
.slider-container .scale ins {
  font-size: 12px;
  text-decoration: none;
  position: absolute;
  left: -5px;
  top: 10px;
  color: #C0C0C0;
  line-height: 1;
}