-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.css
58 lines (51 loc) · 952 Bytes
/
search.css
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
49
50
51
52
53
54
55
56
57
58
.searchDiv{
width:100%;
position:fixed;
top:5%;
left:5%;
z-index:100;
box-sizing: border-box;
display: flex;
justify-content: space-between;
}
.searchDiv > input{
width: 70%;
height: 30px;
border:none;
background-color: transparent;
color: #fff;
outline: none;
padding: 1%;
border-bottom:2px solid #fff;
font-size: 1.2em;
}
::placeholder {
color: #fff;
opacity: 1; /* Firefox */
}
.seacrhBottom{
position: absolute;
top: 15%;
left: 5%;
}
.cross{
position: fixed;
top:4%;
right:7%;
z-index: 999;
}
.cross a{
cursor: pointer;
}
.cross i{
font-size: 40px;
color: #fff;
cursor: pointer;
}
@media screen and (max-width: 900px) {
.seacrhBottom{
position: absolute;
top: 10%;
left: 0;
}
}