passport-captcha.scss
830 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
/* 验证码 css
-----------------------------------
结构:
div.passport-captch
input
div.passport-captcha-img
img
emmet:
div.passport-captcha>(div.passport-captcha-input>input)+div.passport-captcha-img>img
*/
.passport-captcha {
text-align: left;
border-radius: 5PX;
overflow: hidden;
}
.passport-captcha-input {
overflow: hidden;
input {
position: relative;
padding-left: 15px;
height: 52PX;
width: 100%;
font-size: 20PX;
background-color: #575757;
border: 1px solid #606060;
color: #fff;
}
}
.passport-captcha-img {
float: right;
text-align: right;
img {
display: inline-block;
background-color: #fff;
height: 52PX;
width: 90PX;
vertical-align: bottom;
}
}