Guest User

Untitled

a guest
Jun 29th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. /* Add a black background color to the top navigation */
  2. .topnav {
  3. background-color: #2C3E50;
  4. overflow: hidden;
  5. }
  6.  
  7. /* Style the links inside the navigation bar */
  8. .topnav a {
  9. float: left;
  10. color: #f2f2f2;
  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: #808B96;
  26. color: white;
  27. }
  28.  
  29. div {
  30. position: static;
  31. top: 0;
  32. left: 0;
  33. height: 80px;
  34. width: 100vw;
  35. background: rgb(40, 41, 43);
  36. }
Add Comment
Please, Sign In to add comment