Advertisement
itskrystalized

navigation menu 07# >> css

Jul 19th, 2015
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.62 KB | None | 0 0
  1. <style type="text/css">
  2. nav { /* maga a navigáció sáv */
  3. padding: 20px;
  4. text-align: center;
  5. font-family: Tahoma;
  6. }
  7.  
  8. #navmenu { /* navigáció háttere */
  9. background: #000000;
  10. }
  11.  
  12. mk a:link, mk a:visited { /* menü linkjei */
  13. color: #ffffff;
  14. font-family: Arial;
  15. font-size: 14px;
  16. font-style: normal;
  17. font-weight: 700;
  18. padding: 0 12px;
  19. margin: 0 10px;
  20. letter-spacing: 3px;
  21. text-decoration: none!important;
  22. text-transform: uppercase;
  23. transition: 0.5s ease;
  24. }
  25.  
  26. mk a:hover, mk a:active { /* menü linkjei ha ráviszed az egeret */
  27. background-color: #ffffff;
  28. color: #000000;
  29. padding: 20px 12px;
  30. }
  31. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement