Skip to content

Instantly share code, notes, and snippets.

@nerdic-coder
Created May 20, 2018 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nerdic-coder/f2f73e3d32f6a2b3e980b45d457eb18d to your computer and use it in GitHub Desktop.
Save nerdic-coder/f2f73e3d32f6a2b3e980b45d457eb18d to your computer and use it in GitHub Desktop.
hero-search.css
/* HeroSearch private styles */
.search-result li {
border-bottom: 1px solid gray;
border-left: 1px solid gray;
border-right: 1px solid gray;
width:195px;
height: 16px;
padding: 5px;
background-color: white;
cursor: pointer;
list-style-type: none;
}
.search-result li:hover {
background-color: #607D8B;
}
.search-result li a {
color: #888;
display: block;
text-decoration: none;
}
.search-result li a:hover {
color: white;
}
.search-result li a:active {
color: white;
}
#search-box {
width: 200px;
height: 20px;
}
ul.search-result {
margin-top: 0;
padding-left: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment