-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearchbar.css
More file actions
63 lines (57 loc) · 1.12 KB
/
searchbar.css
File metadata and controls
63 lines (57 loc) · 1.12 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
59
60
61
62
63
input {
border-radius: 2px;
padding: 0 2px;
font-family: "Open Sans";
min-width: 40px;
width: auto;
}
.im-search-bar {
height: 20px;
display: grid;
grid-template-columns: 10px 1fr 24px 10px;
grid-template-rows: 1fr;
align-content: center;
align-items: center;
padding-top: 2px;
padding-bottom: 2px;
border-radius: 100px;
border: 1px solid #ccc;
margin: 7px 7px;
background: #fff;
}
.im-search-fixed-width {
max-width: 500px;
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
text-align: center;
top: 10px;
z-index: 100;
}
.im-search-bar input,
.im-search-bar input:focus,
.im-search-bar input:hover {
display: inline-block;
border: 0px;
}
.im-search-bar input {
width: auto;
min-width: 40px;
}
.im-search-bar input::placeholder {
color: #666;
font-style: italic;
}
.im-search-bar .im-search-button {
align-self: center;
justify-self: right;
width: 24px;
text-align: right;
cursor: pointer;
padding-top: 4px;
}
.im-search-fixed-width > .im-search-button {
padding-top: 0;
}