_passport-captcha.css
1013 Bytes
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
/* 验证码 css
-----------------------------------
结构:
div.passport-captch
input
div
img
button
emmet:
div.passport-captch>input+div>img+button
*/
.passport-captcha {
text-align: left;
input {
display: inline-block;
width: 50%;
position: relative;
padding-left: 15px;
height: 52PX;
font-size: 20PX;
background-color: #575757;
border: 1px solid #606060;
border-radius: 5PX;
color: #fff;
}
}
.passport-captcha-img {
width: 50%;
float: right;
text-align: right;
img {
display: inline-block;
margin-right: 30px;
background-color: #fff;
height: 52PX;
width: 90PX;
vertical-align: bottom;
}
}
.passport-captcha-refresh {
display: inline-block;
text-decoration: underline;
font-size: 18px;
color: #ff1901;
background-color: transparent;
padding: 0;
margin: 0;
border: 0;
outline: 0;
}