style.css 3.4 KB

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