Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. /* Add a black background color to the top navigation */
  2. .topnav {
  3. background-color: #333;
  4. overflow: hidden;
  5. }
  6.  
  7. /* Style the links inside the navigation bar */
  8. .topnav a {
  9. float: left;
  10. color: #F8F8FF;
  11. text-align: center;
  12. padding: 14px 16px;
  13. text-decoration: none;
  14. font-size: 17px;
  15. }
  16.  
  17. /* Change the color of links on hover */
  18. .topnav a:hover {
  19. background-color: #ddd;
  20. color: black;
  21. }
  22.  
  23. /* Add a color to the active/current link */
  24. .topnav a.active {
  25. background-color: #4CAF50;
  26. color: white;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement