Advertisement
Guest User

3069

a guest
Oct 24th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. /*code for all lists*/
  2. ul {
  3. list-style-type: none;
  4. margin: 0;
  5. padding: 0;
  6. overflow: hidden;
  7. background-color: #fff;
  8. width: 900px;
  9. }
  10.  
  11. li {
  12. float: left;
  13. }
  14.  
  15. li:last-child {
  16. border-right: none;
  17. }
  18.  
  19. li a {
  20. display: block;
  21. color: white;
  22. text-align: center;
  23. padding: 18px 20px;
  24. text-decoration: none;
  25. }
  26.  
  27. li a:hover:not(.active) {
  28. background-color: #c1f0c1;
  29. }
  30.  
  31. .active {
  32. background-color: #c1f0c1;
  33. }
  34. /*Border of navbar*/
  35. ul {
  36. border: 2px solid #196619;
  37. background-color: #32cd32;
  38. }
  39. /*Text in navbar color*/
  40. li a {
  41. color: #ffff00;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement