Advertisement
anzure

../CSS/Menu.css

May 13th, 2015
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.40 KB | None | 0 0
  1. nav ul {
  2.     margin:0;
  3.     padding:0;
  4. }
  5. nav ul li {
  6.     list-style-type:none;
  7.     float:left;
  8.     display:block;
  9.     width:150px;
  10.     height:60px;
  11.     text-align:center;
  12.     line-height:55px;
  13.     font-family:Arial, Helvetica, sans-serif;
  14.     font-size:17px;
  15. }
  16. nav ul li a {
  17.     text-decoration:none;
  18.     color:#FFF;
  19. }
  20. nav ul li:hover {
  21.     background-color:rgb(242, 242, 242);
  22. }
  23. nav ul li:hover a {
  24.     display:block;
  25.     color:#000;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement