Advertisement
cafreak

template

Oct 4th, 2014
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.89 KB | None | 0 0
  1. body{
  2.     width: 1024px;
  3.     margin: auto;
  4. }
  5.  
  6. .Header{
  7.     background-color: #0b0b0b;
  8.     max-height: 150px;
  9.     width: inherit;
  10. }
  11.  
  12. .Header img{
  13.     display: block;
  14.     height: auto;
  15.     width: auto;
  16.     max-height: inherit;
  17.     margin: auto;
  18. }
  19.  
  20. .Navigation{
  21.     display: block;
  22.     list-style: none;
  23.     margin: 0px;
  24.     padding: 2px;
  25.     width: inherit;
  26.     background-color: black;
  27.     color: white;
  28. }
  29.  
  30. .Navigation ul{
  31.     display: inline-block;
  32.     padding-left: 5px;
  33.     padding-right: 5px;
  34. }
  35.  
  36. .Navigation ul li{
  37.     display: block;
  38.     float: left;
  39. }
  40.  
  41. .Navigation ul li a{
  42.     display: inline;
  43.     margin: 0px;
  44.     padding: 10px;
  45.     background-color: #2f2f2f;
  46.     color: white;
  47.     text-decoration: none;
  48. }
  49.  
  50. .Navigation ul li a:hover{
  51.     background-color: #4a4a4a;
  52. }
  53.  
  54. .Navigation ul li a:visited{
  55.     text-decoration: none;
  56.     color: white;  
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement