blob: b832aca039771af263b2a180fc62020590bf9517 (
plain)
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
|
.search-bar{
position: fixed;
top: $top-bar-height;
width:100%;
height:$search-bar-height;
box-shadow:black;
alpha:0.3;
distance:1;
background: white;
}
.search-input{
position: fixed;
width: 100%;
top: $top-bar-height+($search-bar-height - $search-icon-height)/2;
height:$search-icon-height;
left: 100px;
}
.search-icon {
position:fixed;
width:20px;
height:$search-icon-height;
left: 60px;
top: $top-bar-height+($search-bar-height - $search-icon-height)/2;
}
|