Advertisement
conception

navigation

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