-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.css
More file actions
44 lines (42 loc) · 1.02 KB
/
Copy pathsearch.css
File metadata and controls
44 lines (42 loc) · 1.02 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
#fastSearch {
visibility: hidden;
position: absolute;
left: 50%;
top: 210px;
margin-left: -250px;
display: inline-block;
width: 500px;
z-index:1;
}
#fastSearch input {
padding: 4px 10px;
width: 100%;
height: 50px;
font-size: 1.6em;
color: #aaa;
font-weight: bold;
background-color: #00000014;
border-radius: 5px;
border: none;
outline: none;
text-align: left;
display: inline-block;
}
#searchResults li {
list-style: none;
margin-left: 0em;
background-color: #e4e4e4;
border-bottom: 1px solid #fff;
/* border-bottom: 1px dotted #000; */
}
#searchResults li .title { font-size: 1.1em; margin-bottom: 10px; display: inline-block;}
#searchResults{
visibility: inherit;
display: inline-block;
border: 1px solid rgba(236, 236, 236, 0.86);
padding: 0;
margin-left: 36px;
border-radius: 5px
}
#searchResults a { text-decoration: none !important; padding: 10px; display: block; }
#searchResults a:hover, a:focus { outline: 0; background-color: #666; color: #fff;}