Guest User

CSS

a guest
Mar 4th, 2015
433
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.76 KB | None | 0 0
  1. body{
  2.     background-color: lightblue;
  3. }
  4.  
  5. #wrapper>header{
  6.     width: 70%;
  7.     margin-left: 35%;
  8. }
  9.  
  10. a{
  11.     text-decoration: none;
  12. }
  13.  
  14. section{
  15.     width: 30%;
  16.     margin: 0 auto;
  17.    
  18. }
  19.  
  20. nav>ul>li{
  21.     background-color: white;
  22.     border: solid black;
  23.     float: left;
  24.     margin-left: 2%;
  25.     margin-bottom: 1%;
  26.     list-style: none;
  27. }
  28.  
  29. nav>ul{
  30.     text-decoration: line-through;
  31. }
  32.  
  33.  
  34. article{
  35.     float: left;
  36.     border: solid black;
  37.     margin-bottom: 2%;
  38.     background-color: white;
  39.  
  40. }
  41.  
  42. aside{
  43.     border: solid black;
  44.     margin-left: 1%;
  45.     margin-bottom: 10px;
  46.     background-color: white;
  47.     width: 20%;
  48.     float: left;
  49. }
  50.  
  51. p{
  52.     font-size: 0.8em;
  53. }
  54.  
  55. footer{
  56.     width: 70%;
  57.     border: solid black;
  58.     background-color: white;
  59.     float: left;
  60.     margin-left: 20%;
  61.     text-align: center;
  62. }
Advertisement
Add Comment
Please, Sign In to add comment