-
Notifications
You must be signed in to change notification settings - Fork 0
/
slider_button.css
59 lines (57 loc) · 1 KB
/
slider_button.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
55
56
57
58
59
*{
padding: 0;
margin: 0;
}
#doctor-confirm-slider-botton{
position: relative;
width: 300px;
height: 40px;
margin: 0 auto;
margin-top: 10px;
background-color: #e8e8e8;
box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
border-radius: 10px;
}
.slider-bgColor{
position: absolute;
left:0;
top:0;
width:40px;
height: 40px;
background-color: lightblue;
border-radius: 10px;
}
.slider-txt{
position: absolute;
width: 100%;
height: 40px;
line-height: 40px;
font-size: 14px;
color: #000;
text-align: center;
border-radius: 10px;
}
.slider{
position: absolute;
left:0;
top:0;
width: 50px;
height: 38px;
border: 1px solid #ccc;
background: #fff;
text-align: center;
cursor: move;
border-radius: 10px;
}
.slider>img{
position: absolute;
top:50%;
left:50%;
transform: translate(-50%,-50%);
height: 40px;
width: 54px;
border-radius: 10px;
}
.slider.active>img{
color:green;
}