Advertisement
Guest User

CSS

a guest
Feb 25th, 2014
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.10 KB | None | 0 0
  1. * {
  2.     padding: 0;
  3.     margin: 0;
  4.     font-family: Arial, Verdana, Serif;
  5.     font-size: 15px;
  6.     font-weight: normal;
  7.     font-style: normal;
  8. }
  9.  
  10. #navigation {
  11.     background-color: black;
  12.     height: 37px;
  13. }
  14.  
  15. #navigation a{
  16.     text-decoration: none;
  17.     color: white;
  18.     display: block;
  19.     float: left;
  20.     padding-top: 10px;
  21.     padding-bottom: 10px;
  22.     padding-left: 20px;
  23.     padding-right: 20px
  24. }
  25.  
  26. #logo a{
  27.     float: left;
  28.     padding-top: 10px;
  29.     padding-bottom: 10px;
  30.     padding-right: 60px;
  31.     text-decoration: none;
  32.     background-color: red;
  33.     color: white;
  34.    
  35. }
  36.  
  37. #navigation a:hover {
  38.     background-color: white;
  39.     color: black;
  40. }
  41.  
  42. #left {
  43.     width: 200px;
  44.     float: left;
  45. }
  46.  
  47. #left a {
  48.     text-decoration: none;
  49.     font-size: 17px;
  50.     padding-bottom: 10px;
  51.     color: black;
  52.     display: block;
  53.     padding: 10px;
  54. }
  55.  
  56. #left a:hover {
  57.     background-color: black;
  58.     color: white;
  59. }
  60.  
  61. #content {
  62.     background-color: gray;
  63.     width: 520px;
  64.     height: 155px;
  65.     text-align: center;
  66.     padding-top:45px;
  67.     color: #dadada;
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement