style.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. body {
  2. margin:0;
  3. padding:0;
  4. background-color:#e6f5fc;
  5. }
  6. H2, H3, H4 {
  7. font-family:Trebuchet MS;
  8. font-weight:bold;
  9. margin:0;
  10. padding:0;
  11. }
  12. H2 {
  13. font-size:28px;
  14. color:#263842;
  15. padding-bottom:6px;
  16. }
  17. H3 {
  18. font-family:Trebuchet MS;
  19. font-weight:bold;
  20. font-size:22px;
  21. color:#253741;
  22. margin-top:43px;
  23. margin-bottom:8px;
  24. }
  25. H4 {
  26. font-family:Trebuchet MS;
  27. font-weight:bold;
  28. font-size:21px;
  29. color:#222222;
  30. margin-bottom:4px;
  31. }
  32. P {
  33. padding:13px 0;
  34. margin:0;
  35. line-height:22px;
  36. }
  37. UL{
  38. line-height : 22px;
  39. }
  40. PRE{
  41. background : #333;
  42. color : white;
  43. padding : 10px;
  44. }
  45. #header {
  46. height : 227px;
  47. position:relative;
  48. overflow:hidden;
  49. background: url(images/background.png) repeat-x 0 0;
  50. border-bottom:1px solid #c9e8fa;
  51. }
  52. #header .content .signature {
  53. font-family:Trebuchet MS;
  54. font-size:11px;
  55. color:#ebe4d6;
  56. position:absolute;
  57. bottom:5px;
  58. right:42px;
  59. letter-spacing : 1px;
  60. }
  61. .content {
  62. width:970px;
  63. position:relative;
  64. margin:0 auto;
  65. }
  66. #header .content {
  67. height:184px;
  68. margin-top:22px;
  69. }
  70. #header .content .logo {
  71. width : 282px;
  72. height : 184px;
  73. background:url(images/logo.png) no-repeat 0 0;
  74. position:absolute;
  75. top:0;
  76. left:0;
  77. }
  78. #header .content .title {
  79. width : 605px;
  80. height : 58px;
  81. background:url(images/ace.png) no-repeat 0 0;
  82. position:absolute;
  83. top:98px;
  84. left:329px;
  85. }
  86. #wrapper {
  87. background:url(images/body_background.png) repeat-x 0 0;
  88. min-height:250px;
  89. }
  90. #wrapper .content {
  91. font-family:Arial;
  92. font-size:14px;
  93. color:#222222;
  94. width:1000px;
  95. }
  96. #wrapper .content .column1 {
  97. position:relative;
  98. float:left;
  99. width:315px;
  100. margin-right:31px;
  101. }
  102. #wrapper .content .column2 {
  103. position:relative;
  104. float:left;
  105. width:600px;
  106. padding-top:47px;
  107. }
  108. .fork_on_github {
  109. width:310px;
  110. height:80px;
  111. background:url(images/fork_on_github.png) no-repeat 0 0;
  112. position:relative;
  113. overflow:hidden;
  114. cursor:pointer;
  115. }
  116. .fork_on_github:hover {
  117. background-position:0 -80px;
  118. }
  119. .divider {
  120. height:3px;
  121. background-color:#bedaea;
  122. margin-bottom:3px;
  123. }
  124. .menu {
  125. padding:23px 0 0 24px;
  126. }
  127. UL.content-list {
  128. padding:15px;
  129. margin:0;
  130. }
  131. UL.menu-list {
  132. padding:0;
  133. margin:0 0 20px 0;
  134. list-style-type:none;
  135. line-height : 16px;
  136. }
  137. UL.menu-list LI {
  138. color:#2557b4;
  139. font-family:Trebuchet MS;
  140. font-size:14px;
  141. padding:7px 0;
  142. border-bottom:1px dotted #d6e2e7;
  143. }
  144. UL.menu-list LI:last-child {
  145. border-bottom:0;
  146. }
  147. A {
  148. color:#2557b4;
  149. text-decoration:none;
  150. }
  151. A:hover {
  152. text-decoration:underline;
  153. }
  154. P#first{
  155. background : rgba(255,255,255,0.5);
  156. padding : 20px;
  157. font-size : 16px;
  158. line-height : 24px;
  159. margin : 0 0 20px 0;
  160. }
  161. #footer {
  162. height:40px;
  163. position:relative;
  164. overflow:hidden;
  165. background:url(images/bottombar.png) repeat-x 0 0;
  166. position:relative;
  167. margin-top:40px;
  168. }
  169. UL.menu-footer {
  170. padding:0;
  171. margin:8px 11px 0 0;
  172. list-style-type:none;
  173. float:right;
  174. }
  175. UL.menu-footer LI {
  176. color:white;
  177. font-family:Arial;
  178. font-size:12px;
  179. display:inline-block;
  180. margin:0 1px;
  181. }
  182. UL.menu-footer LI A {
  183. color:#8dd0ff;
  184. text-decoration:none;
  185. }
  186. UL.menu-footer LI A:hover {
  187. text-decoration:underline;
  188. }