_search.scss
833 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
/**
* Created by chenglong.wang@yoho.cn on 2014/1/6.
*/
.search{
margin: 15px 15px 0 15px;
.search_input{
display: block;
width: 100%;
height: 32px;
line-height: 32px;
@include border-radius(20px);
position: relative;
border: 1px solid #000;
>input[type='text']{
width: 100%;
height: 100%;
font-size: 1.8rem;
color: #000;
@include box-sizing();
padding: 0 15px;
border: none;
background: none;
outline: none;
}
}
.search_btn{
display: block;
width: 22px;
height: 20px;
background: inline_image('base64/search.png');
position: absolute;
top: 6px;
right: 10px;
}
.result{
color: #999;
text-align: center;
margin: 15px 0;
font-size: 1.4rem;
}
}