forked from gurayyarar/AdminBSBMaterialDesign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_searchbar.scss
48 lines (41 loc) · 833 Bytes
/
_searchbar.scss
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
.search-bar {
position: fixed;
top: -100px;
left: 0;
z-index: 9999999;
width: 100%;
@include transition(.25s);
&.open {
top: 0;
}
.search-icon {
position: absolute;
top: 20px;
left: 14px;
.material-icons {
font-size: 32px;
color: #999;
}
}
.close-search {
position: absolute;
cursor: pointer;
font-size: 30px;
top: 16px;
right: 18px;
.material-icons {
color: #999;
opacity: 1;
@include transition(.5s);
&:hover {
opacity: .5;
}
}
}
input[type="text"] {
width: 100%;
font-size: 16px;
padding: 25px 60px 23px 56px;
border: none;
}
}