_slide-unlock.css
1.36 KB
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
.slide-unlock {
margin: 10PX auto 15PX;
height: 80px;
position: relative;
border-radius: 2px;
background-color: #b3b3b3;
border-radius: 5PX;
overflow: hidden;
text-align: center;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
.bg {
position: absolute;
left: 0;
top: 0;
height: 100%;
background-color: #7ac23c;
z-index: 1;
}
.label {
width: 80px;
position: absolute;
left: 0;
top: 0;
height: 80px;
line-height: 80px;
outline: 1px solid #ccc;
border-radius: 4PX;
background: #e7e7e7;
z-index: 3;
cursor: move;
color: #ff9e77;
font-size: 16px;
font-weight: 900;
&:after {
display: block;
font-family: "iconfont";
content: "\e901";
color: #757575;
font-size: 25px;
}
}
.label-tip {
position: absolute;
left: 0;
width: 100%;
height: 100%;
font-size: 28px;
color: #787878;
line-height: 80px;
text-align: center;
z-index: 2;
}
.progress {
float: left;
height: 80px;
background-color: #36a74c;
}
}
.slide-unlock-ok .label:after {
content: "\e900" !important;
}