BDS: user search on the home page

This commit is contained in:
Martin Pépin 2020-06-07 20:58:33 +02:00
parent bca75dbf98
commit 5d24786e20
No known key found for this signature in database
GPG key ID: E7520278B1774448
6 changed files with 137 additions and 1 deletions

View file

@ -0,0 +1,70 @@
html, body {
padding: 0;
margin: 0;
background: #ddcecc;
font-size: 18px;
}
a {
text-decoration: none;
color: inherit;
}
/* header */
nav {
background: #3d2464;
width: 100%;
text-align: center;
padding: 0.4em 0;
}
input[type="text"] {
font-size: 18px;
}
#search_autocomplete {
width: 480px;
margin: 0;
border: 0;
padding: 10px 10px;
}
.highlight {
text-decoration: underline;
font-weight: bold;
}
.yourlabs-autocomplete ul {
width: 500px;
list-style: none;
padding: 0;
margin: 0;
}
.yourlabs-autocomplete ul li {
height: 2em;
line-height: 2em;
width: 500px;
padding: 0;
}
.yourlabs-autocomplete ul li.hilight {
background: #e8554e;
}
.autocomplete-item {
display: block;
width: 480px;
height: 100%;
padding: 2px 10px;
margin: 0;
}
.autocomplete-header {
background: #b497e1;
}
.autocomplete-value, .autocomplete-new, .autocomplete-more {
background: white;
}