Advertisement
Derezzed

Navigation Bar CSS code By Richard M.

Mar 20th, 2012
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.65 KB | None | 0 0
  1. .Navbar {
  2.     height: 50px;
  3.     width: 900px;
  4.     border: 1px solid #000;
  5.     margin-right: auto;
  6.     margin-left: auto;
  7.     background-color:#000;
  8.     background: url(DIR TO IMAGE) repeat-x;
  9. }
  10. .Button a{
  11.     float: left;
  12.     color: #FFF;
  13.     text-decoration: none;
  14.     height: 50px;
  15.     width: 150px;
  16.     font-size: 20px;
  17.     font-weight: bold;
  18.     text-align: center;
  19.     line-height: 50px;
  20.     font-family: Verdana, Geneva, sans-serif;
  21. }
  22. .Button a:hover{
  23.     float: left;
  24.     color: #F00;
  25.     text-decoration: none;
  26.     height: 50px;
  27.     width: 150px;
  28.     font-size: 20px;
  29.     font-weight: bold;
  30.     text-align: center;
  31.     line-height: 50px;
  32.     background-image: url(DIR TO IMAGE);
  33.     background-repeat: repeat-x;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement