Advertisement
Guest User

Nav CSS

a guest
Jul 1st, 2013
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.84 KB | None | 0 0
  1. /* Navigation */
  2.  
  3. .menu {
  4.     position:fixed;
  5.     top:0px;
  6.     width:100%;
  7.     height:74px;
  8.     background-color:#343434;
  9.     z-index:9999;
  10. }
  11. #logo {
  12.     margin-bottom:0;
  13. }
  14.  
  15. #nav {
  16.     text-align: right;
  17. }
  18. .navigation{
  19.     float: right;
  20.     list-style: none;
  21.     margin: 0;
  22. }
  23. ul.navigation {
  24.     margin:22px 0;
  25.     padding:0;
  26. }
  27. .navigation li{
  28.     float: left;
  29.     text-align:left;
  30.     padding:0;
  31.     margin-left:30px;
  32.     text-transform:uppercase;
  33.     background:none;
  34.     font-family:'Yanone Kaffeesatz', sans-s erif;
  35.     font-weight:200;
  36.     font-size:18px;
  37.     line-height:20px;
  38.     color:#a6a6a6;
  39. }
  40. .navigation li:first-child{margin-left:0;}
  41. .navigation li:hover,
  42. .navigation .active {
  43.     cursor:pointer;
  44.     color: #fff;
  45. }
  46. .navigation li span{
  47.     display:block;
  48.     text-transform:none;
  49.     font-family:'Arial';
  50.     font-size:11px;
  51.     line-height:14px;
  52.     font-weight:400;
  53.     color:#6b6b6b;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement