Guest User

Untitled

a guest
Jan 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. /* Main styles for site format. */
  2.  
  3. * {
  4. margin: 0;
  5. padding: 0;
  6. }
  7.  
  8. #wrapper {
  9. width: 800px;
  10. background-color: #FFDD00;
  11. margin: auto;
  12. font-family: Arial, sans-serif;
  13. font-size: 14px;
  14. }
  15.  
  16. #header {
  17. width: 800px;
  18. height: 150px;
  19. background-color: #FFBB00;
  20. text-align: center;
  21. }
  22.  
  23. #headerLogo {
  24. float: left;
  25. width: 150px;
  26. margin-left: 10px;
  27. margin-top: 8px;
  28. }
  29.  
  30. #headerBanner {
  31. float: left;
  32. width: 550px;
  33. margin-top: 25px;
  34. }
  35.  
  36. #mainbody {
  37. width: 800px;
  38. height: 500px;
  39. }
  40.  
  41. #navigation {
  42. width: 150px;
  43. height: 600px;
  44. float: left;
  45. background-color: #FFCC00;
  46. }
  47.  
  48. #navTitle {
  49. padding: 10px;
  50. text-align: center;
  51. font-size: 16px;
  52. }
  53.  
  54. #navList {
  55. padding: 10px;
  56. text-align: center;
  57. font-size: 16px;
  58. }
  59.  
  60. #navList li {
  61. list-style-type: none;
  62. font-weight: bold;
  63. color: #BB8800;
  64. line-height: 40px;
  65. }
  66.  
  67. #pagebody {
  68. width: 610px;
  69. float: right;
  70. padding: 20px;
  71. }
  72.  
  73. #info {
  74. width: 800px;
  75. height: 50px;
  76. }
  77.  
  78. #infoRight {
  79. width: 150px;
  80. height: 50px;
  81. float: right;
  82. text-align: right;
  83. }
  84.  
  85. #footer {
  86. width: 800px;
  87. height: 75px;
  88. background-color: #FFBB00;
  89. position: absolute;
  90. text-align: center;
  91. font-size: 16px;
  92. }
  93.  
  94. a, a:link, a:visited {
  95. color: #BB8800
  96. }
  97.  
  98. a, a:active {
  99. color: #996600;
  100. }
  101.  
  102. h2 {
  103. color: #996600;
  104. }
  105.  
  106. /* Styles for pages */
  107.  
  108. /* Home */
  109.  
  110. #home {
  111. width: 570px;
  112. padding-left: 20px;
  113. }
  114.  
  115. /* Menu */
  116.  
  117. #menu {
  118. width: 610px;
  119. }
  120.  
  121. .menuItem {
  122. width: 610px;
  123. height: 60px;
  124. }
  125.  
  126. .itemName {
  127. width: 140px;
  128. font-size: 20px;
  129. }
  130.  
  131. .itemInfo {
  132. width: 330px;
  133. font-size: 14px;
  134. }
  135.  
  136. .itemPrice {
  137. width: 30px;
  138. font-size: 14px;
  139. }
  140.  
  141. /* Performances */
  142.  
  143. /* Jobs */
  144.  
  145. #jobs {
  146. width: 610px;
  147. }
  148.  
  149. #jobsLeft {
  150. width: 130px;
  151. height: 100%;
  152. float: left;
  153. border-right: 1px solid;
  154. font-size: 12px;
  155. padding-right: 9px;
  156. }
  157.  
  158. #jobsRight {
  159. width: 470px;
  160. float: right;
  161. }
Add Comment
Please, Sign In to add comment