_passport-captcha.css
711 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
/* 验证码 css
-----------------------------------
结构:
div.passport-captch
input
div.passport-captcha-img
img
emmet:
div.passport-captcha>input+div.passport-captcha-img>img
*/
.passport-captcha {
text-align: left;
input {
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 {
float: right;
text-align: right;
img {
display: inline-block;
background-color: #fff;
height: 52PX;
width: 90PX;
vertical-align: bottom;
}
}