Advertisement
Guest User

CSS

a guest
Nov 22nd, 2011
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.06 KB | None | 0 0
  1.  
  2.  
  3. #wrapper {
  4.     width:840px;
  5.     display: block;
  6.     background-image: url('/images/gradient-bg.jpg');
  7.     background-repeat: repeat-x;
  8.     margin-bottom: 5px;
  9.    
  10. }
  11.  
  12. #header{
  13.     border-style: solid;
  14.     border-width: px;
  15.     border-color: gray;
  16.     border-radius: 30px;
  17.     background-image: url('/images/header-bg.jpg');
  18.     font-family: Helvetica;
  19.     font-size: 72px;
  20.     padding: 5px;
  21.     margin-bottom: 30px;
  22.     float:top;
  23. }
  24. #bottom{
  25.     border-style: solid;
  26.     border-width: 1px;
  27.     border-color: gray;
  28.     font-family: Helvetica;
  29.     font-size: 12px;
  30.     padding: 5px;
  31.     float:bottom;
  32.     margin-top: 435px;
  33.     background: white;
  34.     text-align: center;
  35. }
  36.    
  37. #menu {
  38.     border-style: solid;
  39.     border-width: 1px;
  40.     border-color: gray;
  41.     font-family: Helvetica;
  42.     font-size: 20px;
  43.     padding: 5px;
  44.     width: 280px;
  45.     height: 90%;
  46.     float:right;
  47.     background: white;
  48.    
  49.    
  50. }
  51.  
  52. #content {
  53.     border-style: solid;
  54.     border-width: 1px;
  55.     border-color: gray;
  56.     font-family: Helvetica;
  57.     font-size: 12px;
  58.     padding: 5px;
  59.     width: 481px;
  60.     height:90%;
  61.     float: left;
  62.     margin-bottom: 5px;
  63.  
  64.     background: white;
  65.    
  66. }
  67.  
  68.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement