Advertisement
Guest User

Untitled

a guest
Aug 21st, 2014
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 KB | None | 0 0
  1. <style type="text/css">
  2.  
  3.  
  4. body { background-color: rgb(240,240,240); font-family: Verdana; font-size: 2em;}
  5.  
  6. /* CONTAINER */
  7. #container
  8. {
  9. width:1500px; height: 900px; margin:0 auto 0 auto;
  10. }
  11.  
  12.  
  13.  
  14. /* HEADER */
  15. #header
  16. {
  17. background-color: #404040;
  18. border-style: solid; border-color: blue;
  19. height: 100px;
  20. text-align: center;
  21. }
  22.  
  23.  
  24.  
  25.  
  26. /* MENU DA METTERE SOPRA IL MAIN CONTENET, ALTEZZA FINO A QUELLA DEL DIV GIALLO, MARGIN-TOP 40PIX*/
  27. #menu
  28. {
  29. background-color: #323232;
  30. clear: both;
  31. border-style: solid; border-color: orange;
  32. margin:0 auto;
  33. width: 860px; height: 70px;
  34. margin-top: 30px;
  35. }
  36.  
  37.  
  38.  
  39.  
  40. /* MAIN-CONTANT */
  41. #mainbody
  42. {
  43. background-color: #353030;
  44. border-style: solid; border-color: #990000;
  45. text-align: left;
  46. margin:0 auto; width: 860px; height: 832px; /* 742*/
  47. margin-bottom: 20px; /* margin:0 200px;*/
  48. }
  49.  
  50.  
  51.  
  52.  
  53. #left { float: left; }
  54. #right { float: right;}
  55. #centralbody { border-style: solid; border-color: brown;}
  56.  
  57.  
  58. /* LEFTSIDEBAR */
  59. #leftsidebar
  60. {
  61. background-color: #847B7B;
  62. border-style: solid; border-color: yellow;
  63. text-align: center;
  64. float: left; /*clear: both;*/
  65. width: 290px; height: 275px; margin:0 auto;
  66. margin-top: 40px; /* margin-bottom: 20px; */
  67. }
  68.  
  69.  
  70.  
  71. /* BOXLEFT DA METTERE ALLINEATO SOTTO LEFTSIDEBAR*/
  72. #boxleft
  73. {
  74. background-color: #847B7B;
  75. border-style: solid; border-color: green;
  76. text-align: center;
  77. /*float: left; position: relative; right: 280px;*/
  78. width: 290px; height: 570px; margin:0 auto;
  79. margin-top: 350px;
  80. }
  81.  
  82.  
  83.  
  84. /* RIGHTSIDEBAR*/
  85. #rightsidebar
  86. {
  87. background-color: #847B7B;
  88. border-style: solid; border-color: yellow;
  89. text-align: center;
  90. float: right;
  91. width: 290px; height: 275px; margin:0 auto;
  92. margin-top: 40px; /*margin-bottom: 20px; */
  93. }
  94.  
  95.  
  96. /* BOXRIGHT DA METTERE ALLINEATO SOTTO RIGHSIDEBAR*/
  97. #boxright
  98. {
  99. background-color: #847B7B;
  100. border-style: solid; border-color: green;
  101. text-align: center;
  102. /*float: right; position: relative; left: 280px;*/
  103. width: 290px; height: 570px; margin:0 auto;
  104. margin-top: 350px;
  105. }
  106.  
  107.  
  108.  
  109.  
  110.  
  111. /* FOOTER */
  112. #footer
  113. {
  114. background-color: #353030;
  115. border-style: solid; border-color: #CC6600;
  116. height: 50px; margin:0 auto; width: 1400px;
  117. text-align: left;
  118. }
  119.  
  120. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement