Advertisement
itskrystalized

navigation menu 06# >> css

Jul 17th, 2015
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.71 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. background-color: #000000;
  14. color: #ffffff;
  15. font-family: Tahoma;
  16. font-size: 14px;
  17. font-style: normal;
  18. border-top: 4px solid #000000;
  19. border-bottom: 4px solid #000000;
  20. padding: 15px 0;
  21. margin: 0 15px;
  22. letter-spacing: 2px;
  23. text-decoration: none!important;
  24. text-transform: uppercase;
  25. transition: 0.5s ease;
  26. }
  27.  
  28. mk a:hover, mk a:active { /* menü linkjei ha ráviszed az egeret */
  29. border-top: 4px solid #ffffff;
  30. border-bottom: 4px solid #ffffff;
  31. padding: 6px 0;
  32. }
  33. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement