style.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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: 24px;
  54. margin-bottom: 28px;
  55. }
  56. h3 {
  57. font-size: 18px;
  58. margin-bottom: 24px;
  59. }
  60. h4 {
  61. font-size: 16px;
  62. }
  63. h5 {
  64. font-size: 14px;
  65. }
  66. h6 {
  67. font-size: 13px;
  68. }
  69. hr {
  70. margin: 0 0 19px;
  71. border: 0;
  72. border-bottom: 1px solid #ccc;
  73. }
  74. blockquote {
  75. padding: 2px 13px 21px 2px;
  76. margin-bottom: 12px;
  77. font-family: georgia,serif;
  78. font-style: italic;
  79. }
  80. blockquote:before {
  81. content: "\201C";
  82. font-size: 40px;
  83. margin-left: -10px;
  84. font-family: georgia,serif;
  85. color: #eee;
  86. }
  87. blockquote p {
  88. font-size: 14px;
  89. font-weight: 300;
  90. line-height: 18px;
  91. margin-bottom: 0;
  92. font-style: italic;
  93. }
  94. code, pre {
  95. font-family: Monaco, Andale Mono, Courier New, monospace;
  96. }
  97. code {
  98. background-color: #fee9cc;
  99. color: rgba(0, 0, 0, 0.75);
  100. padding: 1px 3px;
  101. font-size: 12px;
  102. -webkit-border-radius: 3px;
  103. -moz-border-radius: 3px;
  104. border-radius: 3px;
  105. }
  106. pre {
  107. display: block;
  108. padding: 14px;
  109. margin: 0 0 18px;
  110. line-height: 16px;
  111. font-size: 11px;
  112. border: 1px solid #d9d9d9;
  113. white-space: pre-wrap;
  114. word-wrap: break-word;
  115. }
  116. pre code {
  117. background-color: #fff;
  118. color: #737373;
  119. font-size: 11px;
  120. padding: 0;
  121. }
  122. figure img {
  123. max-width: 100%;
  124. }
  125. ul li a {
  126. font-weight: bold;
  127. }
  128. ul li ul a {
  129. font-weight: normal;
  130. }
  131. @media screen and (min-width: 768px) {
  132. body {
  133. width: 748px;
  134. margin: 40px auto;
  135. }
  136. }
  137. table {
  138. margin-bottom: 10px
  139. }
  140. thead {
  141. font-size: 120%;
  142. font-weight: 1000;
  143. cursor: pointer;
  144. background: #c9dff0
  145. }
  146. thead tr th {
  147. text-align: center;
  148. font-weight: bold;
  149. padding: 12px 30px;
  150. padding-left: 42px
  151. }
  152. thead tr th span {
  153. padding-right: 20px;
  154. background-repeat: no-repeat;
  155. background-position: 100% 100%
  156. }
  157. tbody tr td {
  158. padding: 15px 10px
  159. }
  160. tbody tr td.lalign {
  161. text-align: left
  162. }
  163. tbody tr:nth-child(even) {
  164. background: #fff
  165. }
  166. tbody tr:nth-child(odd) {
  167. background: #eee
  168. }
  169. td,th {
  170. border-left: 1px solid #cbcbcb;
  171. border-width: 0 0 0 1px;
  172. font-size: inherit;
  173. margin: 0;
  174. overflow: visible;
  175. padding: .5em 1em
  176. }