Advertisement
Guest User

Untitled

a guest
Feb 4th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.50 KB | None | 0 0
  1. nav {
  2.     width: 60%;
  3.     height: 40px;
  4.     margin-left: 20%;
  5.     background-color: #151515;
  6.     border-top-right-radius: 25px;
  7.     border-bottom-right-radius: 4px;
  8.     border-top-left-radius: 4px;
  9.     border-bottom-left-radius: 4px;
  10. }
  11. nav li {
  12.     float: left;
  13.     list-style: none;
  14.     margin-left: 10px;
  15.     margin-right: 10px;
  16.     background-color: #151515;
  17. }
  18. nav li, a {
  19.     text-decoration: none;
  20.     color: #808080;
  21.     padding-top: 10px;
  22.     padding-left: 6px;
  23. }
  24. nav li a:hover {
  25.     text-decoration: underline;
  26.     color: white;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement