-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearch.css
More file actions
58 lines (53 loc) · 1.13 KB
/
Copy pathSearch.css
File metadata and controls
58 lines (53 loc) · 1.13 KB
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
.search__input{
display: flex;
align-items: center;
border: 1px solid lightgray;
height: 25px;
padding: 10px 20px;
border-radius: 999px;
width: 43vw;
margin:0 auto;
margin-top: 27px;
max-width: 408px;
}
.search__input:hover{
box-shadow: 1px 1px 11px 5px skyblue;
border-color: white;
}
.search__input > input {
flex: 1;
padding: 10px 20px;
font-size: medium;
border: none;
outline-style: none;
}
.search__inputIcon {
color: grey;
}
.search__micIcon{
height: 19px;
object-fit: contain;
}
.search__Buttons{
margin-top: 30px;
display: flex;
justify-content: center;
}
.search__Buttons button {
margin: 5px;
padding: 7px 15px;
border: 1px solid white;
background-color: #f8f8f8;
text-transform: inherit;
color: #5f6368;
}
.search__Buttons button:hover {
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
background-image: -webkit-linear-gradient(top,#f8f8f8, #f1f1f1);
background-color: #f8f8f8;
border: 1px solid #c6c6c6;
color: #222;
}
.search__ButtonsHidden{
display: none !important;
}