Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. /* Global */
  2.  
  3. * {
  4. padding: 0em;
  5. margin: 0em;
  6. }
  7.  
  8. html {
  9. /*width: 100%;*/
  10. }
  11.  
  12. body {
  13. background-color: 333333;
  14. background: #333333;
  15. font-family: helvetica, arial unicode ms, sans-serif;
  16. font-size: 9pt;
  17. color: #cccccc;
  18. }
  19.  
  20. li {
  21. margin-left: 8px;
  22. margin-bottom: 5px;
  23. margin-right: 3px;
  24. margin-top: 11px;
  25. list-style-type: none;
  26. display: block;
  27. float: left;
  28. }
  29.  
  30. #li2 {
  31.  
  32. list-style-type: square;
  33.  
  34. list-style-position: inside;
  35.  
  36. }
  37.  
  38. a {
  39. color: #999999;
  40. text-decoration: none;
  41. border: none;
  42. }
  43.  
  44. a:hover {
  45. text-decoration: none;
  46. color: #CCCCCC;
  47. }
  48.  
  49. a:visited {
  50. color: #999999;
  51. }
  52.  
  53.  
  54. h1 {
  55. color: #99cc00;
  56. }
  57.  
  58. h2.flexible {
  59. color: #99cc00;
  60. }
  61.  
  62. h2 {
  63. color: #000000;
  64. }
  65.  
  66. h3 {
  67. color: #3399ff;
  68. }
  69.  
  70. h4 {
  71. color: #3399ff;
  72. }
  73.  
  74. p {
  75. margin-top: 30px;
  76. }
  77.  
  78.  
  79.  
  80. img {
  81. border: none;
  82. }
  83.  
  84. #wrapper {
  85. padding-left: 0;
  86. padding-bottom: 10px;
  87. padding-right: 0;
  88. padding-top: 0;
  89. width: 1000px; margin: 0 auto;
  90. min-height: 653px;
  91. }
  92.  
  93. #header {
  94.  
  95. }
  96.  
  97. #content {
  98.  
  99. }
  100.  
  101.  
  102.  
  103. #footer {
  104.  
  105. }
  106.  
  107. /*CONTENTS OF HEADER*/
  108.  
  109. #logo {
  110. float: left;
  111. margin-left: 40px;
  112. width: 382px;
  113. height: 124px;
  114. padding-right: 50px;
  115. background: url(images/logo.png) no-repeat top left;
  116. }
  117.  
  118. #menubg {
  119. float: left;
  120. position: relative;
  121. height: 40px;
  122.  
  123. }
  124.  
  125. #menu {
  126.  
  127. }
  128.  
  129. ul {
  130. margin-left: 0;
  131. margin-bottom: 0;
  132. margin-right: 0;
  133. margin-top: 0;
  134. list-style:none;
  135. padding: 45px 0px 0px 0px;
  136. }
  137. li {
  138. float:left;
  139. width:120px;
  140. margin:0;
  141. padding:0;
  142. text-align:center;
  143. }
  144. li a {
  145. font-weight: bold;
  146. font-style: italic;
  147. padding-bottom: 15px;
  148. padding-top: 5px;
  149. display:block;
  150. height:100%;
  151. color:#fff;
  152. text-decoration:none;
  153. text-transform: uppercase;
  154. font-size: 18px;
  155. }
  156. li a.active {
  157. background:url(images/speechbubbles.png) no-repeat 10px 0;
  158. }
  159. li a.active:hover {
  160. color: white;
  161. }
  162.  
  163. li a:hover {
  164. color: #99cc00;
  165. }
  166. li a:visited {
  167. color: white;
  168. }
  169. li a:visited:hover {
  170. color: #99cc00;
  171. }
  172.  
  173.  
  174. #mainbox {
  175. background-position: 50%;
  176. background-repeat: no-repeat;
  177. height: 282px;
  178. background-image: url(images/mainbox.png);
  179. width: 990px; clear: both; /*to clear the floats in the two divs above*/
  180. margin-left: 1px;
  181. }
  182.  
  183. /* IGNORE THIS
  184. #mainbox {
  185. clear: left;
  186. padding: 10px;
  187. margin-top: 20px;
  188. }
  189. */
  190. #rightbox {
  191. text-align: left;
  192. margin-top: 50px;
  193. margin-left: 450px;
  194. color: black;
  195. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement