Advertisement
ghostlines

default.css

Apr 12th, 2011
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.32 KB | None | 0 0
  1. h1, h2, h3, h4, h5 {
  2. margin: 15px 0;
  3. }
  4. h2 {
  5. font-size: 28px;
  6. padding-bottom: 5px;
  7. margin-top: 25px;
  8. margin-bottom: 40px;
  9. border-bottom: 1px solid #ffffff;
  10. }
  11. h3 {
  12. font-size: 20px;
  13. line-height: 10px;
  14. }
  15. p {
  16. color: #000000;
  17. font-size: 15px;
  18. font-family: helvetica;
  19. font-weight: 100;
  20. }
  21. a{
  22. text-decoration: none;
  23. color: black;
  24. }
  25. a:hover {
  26. text-decoration: underline;
  27. }
  28.  
  29. body {
  30. text-align: left;
  31. font-family: helvetica-light, arial, sans-serif;
  32. }
  33.  
  34. html, body, #container {
  35. height: 100%;
  36. }
  37.  
  38. /* body > #container {height:auto; min-height: 100%;} */
  39. hr {
  40. color: #96c5e3;
  41. border-style: solid;
  42. border-top:10px;
  43. }
  44.  
  45. #container {
  46. /* background-image: url(../images/Background.png);
  47. background-repeat:repeat-y; */
  48. width: 1024px;
  49. margin: 0px auto;
  50. text-align: left;
  51. /* position: relative; */
  52. /* background: #f3f3f3;*/
  53. min-height: 100%;
  54. /* margin-bottom: 0px; */
  55. margin-top: -15px;
  56. padding-bottom:40px;
  57. /* -webkit-border-radius: 5px;*/
  58.  
  59. background: -webkit-gradient(
  60. linear,
  61. left bottom,
  62. left top,
  63. color-stop(0.27, rgb(8,169,227)),
  64. color-stop(0.74, rgb(0,115,187))
  65. );
  66. background: -moz-linear-gradient(
  67. center bottom,
  68. rgb(8,169,227) 27%,
  69. rgb(0,115,187) 74%
  70. );
  71. }
  72. #header {
  73. overflow:hidden;
  74. text-decoration:none;
  75. font-size: 18px;
  76. font-family: helvetica;
  77. font-weight: 100;
  78. text-align:left;
  79. width: 1024px;
  80. margin-top: 0px;
  81. border-bottom:1px solid #96c5e3;
  82. margin:0px auto:
  83. list-style-type: none;
  84. }
  85.  
  86.  
  87.  
  88. #navHeaderList {
  89. text-shadow: 0px -2px 0px #000000;
  90. text-decoration:none;
  91. font-size: 18px;
  92. font-family: helvetica;
  93. font-weight: 100;
  94. text-align:left;
  95. height:20px;
  96. width:1024px;
  97. margin-top: 1px;
  98. padding-left: 630px;
  99. padding-top: 2px;
  100. list-style-type: none;
  101. background-color:#005d98;
  102. margin: 0px auto;
  103. }
  104. #navHeaderList li {
  105. font-weight: light;
  106. padding-right: 1em;
  107. text-align: center;
  108. border-left:6px solid #005d98;
  109. display: inline;
  110. }
  111.  
  112. #navHeaderList li a {
  113. color: #ffffff;
  114. text-decoration: none;
  115. text-shadow: 2px 2px 2px #000;
  116. width: 92px;
  117. border-left:6px solid #005d98;
  118. text-align:center;
  119. float: left;
  120. }
  121.  
  122. #navHeaderList li a:hover {
  123. height: 20px;
  124. background: #024e7f;
  125. }
  126.  
  127. #navHeaderList .active {
  128. height: 20px;
  129. background: #024e7f;
  130. }
  131.  
  132.  
  133. #slogan {
  134. font-size: 40px;
  135. color: #ffffff;
  136. margin-top: 15px;
  137. padding-top: 5px;
  138. margin-left: 10px;
  139. text-align:left;
  140. font-family: Allan;
  141. text-shadow: 2px 3px 7px #000;
  142. }
  143.  
  144. #slogan a {
  145. color: #ffffff;
  146. text-decoration: none;
  147. }
  148.  
  149. #main {
  150. width:1024px;
  151. margin: 0px auto;
  152. }
  153.  
  154. #sidebarLeft {
  155. margin-left: 5px;
  156. margin-top: 0px;
  157. border-right: 1px solid #000000;
  158. width:170px;
  159. /* min-height:600px;*/
  160. float:left;
  161.  
  162. }
  163. #primaryContent {
  164. margin-left: 200px;
  165. color: #000000;
  166. float: left;
  167. background:inherit;
  168. }
  169. #footer{
  170. background: #005d98;
  171. height: 40px;
  172. width: 1024px;
  173. margin-top:-40px;
  174. margin: 0px auto;
  175. font-size:12px;
  176. text-transform:uppercase;
  177. clear:both;
  178. position:relative;
  179. float:center;
  180. }
  181.  
  182. /* CLEAR FIX*/
  183. .clearfix:after {content: ".";
  184. display: block;
  185. height: 0;
  186. clear: both;
  187. visibility: hidden;}
  188. .clearfix {display: inline-block;}
  189. /* Hides from IE-mac \*/
  190. * html .clearfix { height: 1%;}
  191. .clearfix {display: block;}
  192. /* End hide from IE-mac */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement