style.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. body {
  2. background-color: #fdfdfd;
  3. }
  4. footer {
  5. text-align: right;
  6. }
  7. footer hr {
  8. margin-bottom: 10px;
  9. }
  10. footer p {
  11. margin-bottom: 10px;
  12. }
  13. #chart {
  14. height: 280px;
  15. margin: 0px auto;
  16. text-align: center;
  17. }
  18. #message {
  19. font-size: 16px;
  20. text-align: center;
  21. }
  22. #link {
  23. margin-top: 18px;
  24. float: right;
  25. }
  26. #link .git-icon {
  27. height: 32px;
  28. }
  29. .antialiased {
  30. -webkit-font-smoothing: antialiased;
  31. -moz-osx-font-smoothing: grayscale;
  32. }
  33. .container {
  34. width: 90%;
  35. margin: 0 auto;
  36. }
  37. .container.sidemenu {
  38. position: relative;
  39. }
  40. .container.sidemenu footer {
  41. position: absolute;
  42. bottom: 0;
  43. left: 0;
  44. right: 0;
  45. z-index: 100;
  46. background-color: #fdfdfd;
  47. }
  48. @media only screen and (min-width: 40.063em) {
  49. .container.sidemenu .column-menu {
  50. position: fixed;
  51. overflow: auto;
  52. top: 60px;
  53. bottom: 0;
  54. padding-bottom: 60px;
  55. width: 280px;
  56. }
  57. .container.sidemenu .column-content {
  58. padding-left: 10px;
  59. padding-top: 20px;
  60. padding-bottom: 60px;
  61. margin-left: 280px;
  62. float: none;
  63. }
  64. }
  65. .container.sidemenu .column-menu .side-bar {
  66. position: relative;
  67. }
  68. .container.sidemenu .column-menu .side-bar li > a {
  69. display: inline;
  70. padding-left: 12px;
  71. }
  72. .container.sidemenu .column-menu .side-bar .label {
  73. top: -2px;
  74. padding: 0.22222rem 0.44444rem 0.33333rem;
  75. font-size: 0.5rem;
  76. margin-bottom: 0;
  77. }
  78. .container.sidemenu .column-content section .label {
  79. top: -4px;
  80. padding: 0.22222rem 0.44444rem 0.33333rem;
  81. font-size: 0.61rem;
  82. }
  83. .container hr.large {
  84. margin: 48px 0;
  85. }
  86. .container hr.medium {
  87. margin: 24px 0;
  88. }
  89. .container hr.small {
  90. margin: 12px 0;
  91. }
  92. .container h3.sub {
  93. color: #999;
  94. margin-bottom: 32px;
  95. }
  96. h1.title {
  97. margin: 16px 0;
  98. }
  99. .top-bar .name h1 {
  100. font-size: 0.94444rem;
  101. }
  102. .button {
  103. transition: none;
  104. }
  105. h1, h2, h3, h4, h5 {
  106. font-weight: 300;
  107. }
  108. .row {
  109. max-width: 80rem;
  110. }
  111. .chart {
  112. margin-top: 42px;
  113. }
  114. .overview {
  115. margin-bottom: 42px;
  116. padding: 0 18px;
  117. }
  118. .features {
  119. margin: 42px auto 30px;
  120. }
  121. .side-bar {
  122. }
  123. .side-bar h5 {
  124. font-weight: bold;
  125. }
  126. .margin-medium-v {
  127. margin-top: 24px;
  128. margin-bottom: 24px;
  129. }
  130. .margin-medium-top {
  131. margin-top: 24px !important;
  132. }
  133. .margin-small-h {
  134. margin-left: 12px;
  135. margin-right: 12px;
  136. }
  137. .margin-small-bottom {
  138. margin-bottom: 12px !important;
  139. }
  140. .c3-editor {
  141. font-size: 1.1em !important;
  142. }
  143. .sourcecode {
  144. margin-bottom: 1.25rem;
  145. }
  146. .sourcecode h3 {
  147. border-bottom: 1px solid #ddd;
  148. padding-bottom: 4px;
  149. }
  150. .sourcecode pre {
  151. border: none;
  152. border-radius: 0;
  153. padding: 12px 0px;
  154. font-size: 1.2em;
  155. line-height: 1.428571429;
  156. word-break: break-all;
  157. word-wrap: break-word;
  158. }
  159. .sourcecode pre code {
  160. background-color: #fdfdfd;
  161. padding: 0;
  162. font-family: Monaco,Menlo,Consolas,"Courier New",monospace;
  163. font-weight: normal;
  164. font-size: 0.9em;
  165. }
  166. .highlight {
  167. border-left: 4px solid #ccc;
  168. padding: 0 8px;
  169. }
  170. .highlight pre {
  171. padding: 0 8px;
  172. line-height: 1.2em;
  173. }
  174. .section .row {
  175. margin-bottom: 32px;
  176. }
  177. .section > a > h2 {
  178. line-height: 1.2em;
  179. margin-top: 18px;
  180. margin-bottom: 18px;
  181. }
  182. span.code {
  183. display: inline-block;
  184. background-color: #eee;
  185. padding-left: 4px;
  186. padding-right: 4px;
  187. font-family: Monaco,Menlo,Consolas,"Courier New",monospace;
  188. font-size: 0.9em;
  189. }
  190. h3 + ul, p + ul {
  191. margin-left: 32px;
  192. }
  193. .gray {
  194. color: #999;
  195. }
  196. li .label {
  197. top: -3px;
  198. padding: 0.22222rem 0.44444rem 0.33333rem;
  199. font-size: 0.61rem;
  200. margin: 0 8px;
  201. }
  202. div.sub-section {
  203. padding-top: 4px;
  204. padding-left: 10px;
  205. }