Advertisement
Tyler_

Untitled

Apr 25th, 2014
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. body
  2. {
  3. background-image:url('img/background.jpg');
  4. background-repeat:repeat-x;
  5. background-color:#666666;
  6. font: normal 12px 'Trebuchet MS', Tahoma, sans-serif;
  7. font-size:14px;
  8. }
  9.  
  10. a
  11. {
  12. text-decoration:none;
  13. color:black;
  14. }
  15.  
  16. .titleholder
  17. {
  18. width:900px;
  19. height:100px;
  20. margin:-8px auto auto auto;
  21. }
  22.  
  23. .title
  24. {
  25. width:400px;
  26. height:80px;
  27. float:left;
  28. background-image:url('img/title.jpg');
  29. background-repeat:no-repeat;
  30. color:orange;
  31. font-family:MAGENTA;
  32. padding-top:20px;
  33. text-align:center;
  34. text-shadow:black -5px -5px 5px;
  35. font-size:x-large;
  36. }
  37.  
  38. .menubar
  39. {
  40. width:900px;
  41. height:38px;
  42. margin:auto;
  43. // background-image:url('img/menubar.jpg');
  44. background-color:black;
  45. -moz-border-radius: 8px 8px 0px 0px;
  46. -webkit-border-radius: 8px 8px 0px 0px;
  47. -khtml-border-radius: 8px 8px 0px 0px;
  48. border-radius: 8px 8px 0px 0px;
  49. }
  50.  
  51. .menuitem
  52. {
  53. width:135px;
  54. height:28px;
  55. margin-left:3px;
  56. margin-top:2px;
  57. padding-top:6px;
  58. float:left;
  59. // background-image:url('img/button_normal.png');
  60. color:white;
  61. font-family:Verdana;
  62. font-size:medium;
  63. text-shadow:silver -1px -1px 3px;
  64. text-align:center;
  65. -moz-border-radius: 8px 8px 0px 0px;
  66. -webkit-border-radius: 8px 8px 0px 0px;
  67. -khtml-border-radius: 8px 8px 0px 0px;
  68. border-radius: 8px 8px 0px 0px;
  69. }
  70.  
  71. .menuitem:hover
  72. {
  73. //background-image:url('img/button_over.png');
  74. background-color:grey;
  75. }
  76.  
  77. .menuitem_current
  78. {
  79. width:135px;
  80. height:32px;
  81. margin-left:3px;
  82. margin-top:-4px;
  83. padding-top:8px;
  84. float:left;
  85. background-image:url('img/button_current.png');
  86. color:black;
  87. font-family:Verdana;
  88. font-size:medium;
  89. text-shadow:black -1px -1px 3px;
  90. text-align:center;
  91. }
  92. .logo
  93. {
  94. width:900px;
  95. height:350px;
  96. margin:auto;
  97. background-image:url('img/logo.jpg');
  98. padding-top:20px;
  99. color:#003500;
  100. text-shadow:green -2px -2px 4px;
  101. cursor:default;
  102. }
  103.  
  104. .mainholder
  105. {
  106. width:900px;
  107. height:600px;
  108. margin:auto;
  109. background-color:silver;
  110. }
  111.  
  112. .mainleft
  113. {
  114. width:650px;
  115. height:580px;
  116. float:left;
  117. background-color:white;
  118. padding:10px 10px 10px 10px;
  119. overflow:scroll;
  120. }
  121.  
  122. .mainright
  123. {
  124. width:150px;
  125. height:580px;
  126. float:right;
  127. background-color:#DEE1EB;
  128. padding:10px 10px 10px 10px;
  129. }
  130.  
  131. .item
  132. {
  133. margin:auto -10px auto -10px;
  134. width:230px;
  135. height:30px;
  136. background-image:url('img/footer.jpg');
  137. color:white;
  138. text-shadow:silver -2px -2px 3px;
  139. text-align:center;
  140. -moz-border-radius: 8px 8px 8px 8px;
  141. -webkit-border-radius: 8px 8px 8px 8px;
  142. -khtml-border-radius: 8px 8px 8px 8px;
  143. border-radius: 8px 8px 8px 8px;
  144. }
  145.  
  146. .footer
  147. {
  148. width:900px;
  149. height:30px;
  150. margin:auto;
  151. color:white;
  152. padding-top:2px;
  153. text-align:center;
  154. text-shadow:silver -2px -2px 3px;
  155. background-image:url('img/footer.jpg');
  156. background-repeat:repeat-x;
  157. -moz-border-radius: 0px 0px 12px 12px;
  158. -webkit-border-radius: 0px 0px 12px 12px;
  159. -khtml-border-radius: 0px 0px 12px 12px;
  160. border-radius: 0px 0px 12px 12px;
  161. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement