whoogle-search/app/static/css/themes/nord-search.css
2020-10-14 18:47:27 +02:00

36 lines
738 B
CSS

.autocomplete {
position: relative;
display: inline-block;
width: 100%;
}
.autocomplete-items {
position: absolute;
border: 1px solid #685e79;
border-bottom: none;
border-top: none;
z-index: 99;
/*position the autocomplete items to be the same width as the container:*/
top: 100%;
left: 0;
right: 0;
}
.autocomplete-items div {
padding: 10px;
cursor: pointer;
color: #3B4252 !important;
background-color: #ECEFF4 !important;
border-bottom: 1px solid #242424;
}
.autocomplete-items div:hover {
background-color: #4C566A !important;
color: #ECEFF4 !important;
}
.autocomplete-active {
background-color: #685e79 !important;
color: #f9fafb !important;
}