Advertisement
conception

TOP Nav - voltage

Oct 21st, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <div id="navi"><center><a href="" class="navlink">Link Name</a>
  2. <a href="" class="navlink">Link Name</a>
  3. <a href="" class="navlink">Link Name</a>
  4. </center>
  5. </div>
  6.  
  7. #navi {
  8. margin: 0px;
  9. top: 0px;
  10. position: absolute;
  11. left: 0px;
  12. height: 30px;
  13. width: 100%;
  14. font-family: trebuchet MS;
  15. font-size: 12pt;
  16. text-transform: uppercase;
  17. text-align: center;
  18. letter-spacing: 2pt;
  19. background-color: #b3b3ba;
  20. padding-bottom: 6px;
  21. border-bottom: 1px solid #504055;
  22. }
  23.  
  24. .navlink:link, .navlink:active, .navlink:visited {
  25. color: #C5CFCE;
  26. border-radius: 10px;
  27. border-left: 5px solid #504055;
  28. border-right: 5px solid #504055;
  29. font-family: Trebuchet MS;
  30. font-size: 10pt;
  31. font-weight: bold;
  32. text-transform: uppercase;
  33. font-weight: lighter;
  34. padding: 2px;
  35. width: 100px;
  36. text-align: center;
  37. display: inline-table;
  38. background: #7F6388;
  39. margin-top: 6px;
  40. letter-spacing: 1px;
  41. -webkit-transition: all 0.5s ease-out;
  42. -moz-transition: all 0.5s ease-out;
  43. }
  44.  
  45. .navlink:hover {
  46. color: #7F6388;
  47. border-left: 5px solid #9BC5CA;
  48. border-right: 5px solid #9BC5CA;
  49. text-transform: uppercase;
  50. font-style: normal;
  51. font-weight: lighter;
  52. text-align: center;
  53. display: inline-table;
  54. background: #C5CFCE;
  55. -webkit-transition: all 0.5s ease-out;
  56. -moz-transition: all 0.5s ease-out;
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement