Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.67 KB | None | 0 0
  1. /* HeroSearch private styles */
  2. .search-result li {
  3.  
  4.   border-bottom: 1px solid gray;
  5.   border-left: 1px solid gray;
  6.   border-right: 1px solid gray;
  7.   width: 200px;
  8.   height: 23px;
  9.   padding: 5px;
  10.   background-color: white;
  11.   cursor: pointer;
  12.   list-style-type: none;
  13. }
  14.  
  15. .search-result li:hover {
  16.   background-color: #607D8B;
  17. }
  18.  
  19. .search-result li a {
  20.   margin-top: -3%;
  21.   color: black;/*#888;*/
  22.   display: block;
  23.   text-decoration: none;
  24. }
  25.  
  26. .search-result li a:hover {
  27.   color: white;
  28. }
  29. .search-result li a:active {
  30.   color: white;
  31. }
  32. #search-box {
  33.   width: 200px;
  34.   height: 20px;
  35. }
  36.  
  37.  
  38. ul.search-result {
  39.   margin-top: 0;
  40.   padding-left: 0;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement