style.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. h1,
  2. h2,
  3. h3,
  4. h4,
  5. h5,
  6. h6,
  7. p,
  8. blockquote {
  9. margin: 0;
  10. padding: 0;
  11. }
  12. body {
  13. font-family: "Helvetica Neue", Helvetica, "Hiragino Sans GB", Arial, sans-serif;
  14. font-size: 18px;
  15. line-height: 1.4;
  16. color: #000000;
  17. margin: 10px 13px 10px 13px;
  18. }
  19. a {
  20. color: #0069d6;
  21. }
  22. a:hover {
  23. color: #0050a3;
  24. text-decoration: none;
  25. }
  26. a img {
  27. border: none;
  28. }
  29. p {
  30. text-indent: 2em;
  31. margin-bottom: 12px;
  32. }
  33. h1,
  34. h2,
  35. h3,
  36. h4,
  37. h5,
  38. h6 {
  39. color: #404040;
  40. line-height: 36px;
  41. }
  42. h1 {
  43. margin-bottom: 32px;
  44. margin-top: 32px;
  45. font-size: 30px;
  46. color: #0050a3;
  47. }
  48. h1 a {
  49. margin-top: 100px;
  50. display: block;
  51. }
  52. h2 {
  53. font-size: 28px;
  54. margin-bottom: 28px;
  55. }
  56. h3 {
  57. font-size: 24px;
  58. margin-bottom: 24px;
  59. }
  60. h4 {
  61. font-size: 20px;
  62. margin-bottom: 20px;
  63. }
  64. h5 {
  65. font-size: 16px;
  66. }
  67. h6 {
  68. font-size: 13px;
  69. }
  70. hr {
  71. margin: 0 0 19px;
  72. border: 0;
  73. border-bottom: 1px solid #ccc;
  74. }
  75. blockquote {
  76. padding: 2px 13px 21px 2px;
  77. margin-bottom: 12px;
  78. font-family: georgia,serif;
  79. font-style: italic;
  80. }
  81. blockquote:before {
  82. content: "\201C";
  83. font-size: 40px;
  84. margin-left: -10px;
  85. font-family: georgia,serif;
  86. color: #eee;
  87. }
  88. blockquote p {
  89. font-size: 14px;
  90. font-weight: 300;
  91. line-height: 18px;
  92. margin-bottom: 0;
  93. font-style: italic;
  94. }
  95. code, pre {
  96. font-family: Monaco, Andale Mono, Courier New, monospace;
  97. }
  98. code {
  99. background-color: #fee9cc;
  100. color: rgba(0, 0, 0, 0.75);
  101. padding: 1px 3px;
  102. font-size: 12px;
  103. -webkit-border-radius: 3px;
  104. -moz-border-radius: 3px;
  105. border-radius: 3px;
  106. }
  107. pre {
  108. display: block;
  109. padding: 14px;
  110. margin: 0 0 18px;
  111. line-height: 16px;
  112. font-size: 11px;
  113. border: 1px solid #d9d9d9;
  114. white-space: pre-line;
  115. word-wrap: break-word;
  116. }
  117. pre code {
  118. background-color: #fff;
  119. color: #737373;
  120. font-size: 11px;
  121. padding: 0;
  122. white-space: pre-wrap;
  123. }
  124. figure img {
  125. display: block;
  126. margin: 0 auto;
  127. max-width: 100%;
  128. }
  129. figcaption {
  130. text-align: center;
  131. }
  132. ul li a {
  133. font-weight: bold;
  134. }
  135. ul li ul a {
  136. font-weight: normal;
  137. }
  138. @media screen and (min-width: 768px) {
  139. body {
  140. width: 748px;
  141. margin: 40px auto;
  142. }
  143. }
  144. table {
  145. margin: 10px auto;
  146. }
  147. thead {
  148. font-size: 120%;
  149. font-weight: 1000;
  150. cursor: pointer;
  151. background: #c9dff0
  152. }
  153. thead tr th {
  154. text-align: center;
  155. font-weight: bold;
  156. padding: 12px 30px;
  157. padding-left: 42px
  158. }
  159. thead tr th span {
  160. padding-right: 20px;
  161. background-repeat: no-repeat;
  162. background-position: 100% 100%
  163. }
  164. tbody tr td {
  165. padding: 15px 10px
  166. }
  167. tbody tr td.lalign {
  168. text-align: left
  169. }
  170. tbody tr:nth-child(even) {
  171. background: #fff
  172. }
  173. tbody tr:nth-child(odd) {
  174. background: #eee
  175. }
  176. td,th {
  177. border-left: 1px solid #cbcbcb;
  178. border-width: 0 0 0 1px;
  179. font-size: inherit;
  180. margin: 0;
  181. overflow: visible;
  182. padding: .5em 1em
  183. }