style.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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-wrap;
  115. word-wrap: break-word;
  116. }
  117. pre code {
  118. background-color: #fff;
  119. color: #737373;
  120. font-size: 11px;
  121. padding: 0;
  122. }
  123. figure img {
  124. display: block;
  125. margin: 0 auto;
  126. max-width: 100%;
  127. }
  128. figcaption {
  129. text-align: center;
  130. }
  131. ul li a {
  132. font-weight: bold;
  133. }
  134. ul li ul a {
  135. font-weight: normal;
  136. }
  137. @media screen and (min-width: 768px) {
  138. body {
  139. width: 748px;
  140. margin: 40px auto;
  141. }
  142. }
  143. table {
  144. margin: 10px auto;
  145. }
  146. thead {
  147. font-size: 120%;
  148. font-weight: 1000;
  149. cursor: pointer;
  150. background: #c9dff0
  151. }
  152. thead tr th {
  153. text-align: center;
  154. font-weight: bold;
  155. padding: 12px 30px;
  156. padding-left: 42px
  157. }
  158. thead tr th span {
  159. padding-right: 20px;
  160. background-repeat: no-repeat;
  161. background-position: 100% 100%
  162. }
  163. tbody tr td {
  164. padding: 15px 10px
  165. }
  166. tbody tr td.lalign {
  167. text-align: left
  168. }
  169. tbody tr:nth-child(even) {
  170. background: #fff
  171. }
  172. tbody tr:nth-child(odd) {
  173. background: #eee
  174. }
  175. td,th {
  176. border-left: 1px solid #cbcbcb;
  177. border-width: 0 0 0 1px;
  178. font-size: inherit;
  179. margin: 0;
  180. overflow: visible;
  181. padding: .5em 1em
  182. }