You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_markdown.less 8.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594
  1. .markdown {
  2. overflow:hidden;
  3. font-family:"Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif;
  4. font-size:16px;
  5. line-height:1.6;
  6. word-wrap:break-word;
  7. >*:first-child {
  8. margin-top:0 !important;
  9. }
  10. >*:last-child {
  11. margin-bottom:0 !important;
  12. }
  13. a:not([href]) {
  14. color:inherit;
  15. text-decoration:none;
  16. }
  17. .absent {
  18. color:#c00;
  19. }
  20. .anchor {
  21. position:absolute;
  22. top:0;
  23. left:0;
  24. display:block;
  25. padding-right:6px;
  26. padding-left:30px;
  27. margin-left:-30px;
  28. }
  29. .anchor:focus {
  30. outline:none;
  31. }
  32. h1,
  33. h2,
  34. h3,
  35. h4,
  36. h5,
  37. h6 {
  38. position:relative;
  39. margin-top:1em;
  40. margin-bottom:16px;
  41. font-weight:bold;
  42. line-height:1.4;
  43. }
  44. h1 .octicon-link,
  45. h2 .octicon-link,
  46. h3 .octicon-link,
  47. h4 .octicon-link,
  48. h5 .octicon-link,
  49. h6 .octicon-link {
  50. display:none;
  51. color:#000;
  52. vertical-align:middle;
  53. }
  54. h1:hover .anchor,
  55. h2:hover .anchor,
  56. h3:hover .anchor,
  57. h4:hover .anchor,
  58. h5:hover .anchor,
  59. h6:hover .anchor {
  60. padding-left:8px;
  61. margin-left:-30px;
  62. text-decoration:none;
  63. }
  64. h1:hover .anchor .octicon-link,
  65. h2:hover .anchor .octicon-link,
  66. h3:hover .anchor .octicon-link,
  67. h4:hover .anchor .octicon-link,
  68. h5:hover .anchor .octicon-link,
  69. h6:hover .anchor .octicon-link {
  70. display:inline-block;
  71. }
  72. h1 tt,
  73. h1 code,
  74. h2 tt,
  75. h2 code,
  76. h3 tt,
  77. h3 code,
  78. h4 tt,
  79. h4 code,
  80. h5 tt,
  81. h5 code,
  82. h6 tt,
  83. h6 code {
  84. font-size:inherit;
  85. }
  86. h1 {
  87. padding-bottom:0.3em;
  88. font-size:2.25em;
  89. line-height:1.2;
  90. border-bottom:1px solid #eee;
  91. }
  92. h1 .anchor {
  93. line-height:1;
  94. }
  95. h2 {
  96. padding-bottom:0.3em;
  97. font-size:1.75em;
  98. line-height:1.225;
  99. border-bottom:1px solid #eee;
  100. }
  101. h2 .anchor {
  102. line-height:1;
  103. }
  104. h3 {
  105. font-size:1.5em;
  106. line-height:1.43;
  107. }
  108. h3 .anchor {
  109. line-height:1.2;
  110. }
  111. h4 {
  112. font-size:1.25em;
  113. }
  114. h4 .anchor {
  115. line-height:1.2;
  116. }
  117. h5 {
  118. font-size:1em;
  119. }
  120. h5 .anchor {
  121. line-height:1.1;
  122. }
  123. h6 {
  124. font-size:1em;color:#777;
  125. }
  126. h6 .anchor {
  127. line-height:1.1;
  128. }
  129. p,
  130. blockquote,
  131. ul,
  132. ol,
  133. dl,
  134. table,
  135. pre {
  136. margin-top:0;
  137. margin-bottom:16px;
  138. }
  139. hr {
  140. height:4px;
  141. padding:0;
  142. margin:16px 0;
  143. background-color:#e7e7e7;
  144. border:0 none;
  145. }
  146. ul,
  147. ol {
  148. padding-left:2em;
  149. }
  150. ul.no-list,
  151. ol.no-list {
  152. padding:0;
  153. list-style-type:none;
  154. }
  155. ul ul,
  156. ul ol,
  157. ol ol,
  158. ol ul {
  159. margin-top:0;
  160. margin-bottom:0;
  161. }
  162. ol ol,
  163. ul ol {
  164. list-style-type: lower-roman;
  165. }
  166. li>p {
  167. margin-top:16px;
  168. }
  169. dl {
  170. padding:0;
  171. }
  172. dl dt {
  173. padding:0;
  174. margin-top:16px;
  175. font-size:1em;
  176. font-style:italic;
  177. font-weight:bold;
  178. }
  179. dl dd {
  180. padding:0 16px;
  181. margin-bottom:16px;
  182. }
  183. blockquote {
  184. padding:0 15px;
  185. color:#777;
  186. border-left:4px solid #ddd;
  187. }
  188. blockquote>:first-child {
  189. margin-top:0;
  190. }
  191. blockquote>:last-child {
  192. margin-bottom:0;
  193. }
  194. table {
  195. display:block;
  196. width:100%;
  197. overflow:auto;
  198. word-break:normal;
  199. word-break:keep-all;
  200. }
  201. table th {
  202. font-weight:bold;
  203. }
  204. table th,
  205. table td {
  206. padding:6px 13px !important;
  207. border:1px solid #ddd;
  208. }
  209. table tr {
  210. background-color:#fff;
  211. border-top:1px solid #ccc;
  212. }
  213. table tr:nth-child(2n) {
  214. background-color:#f8f8f8;
  215. }
  216. img {
  217. max-width:100%;
  218. box-sizing:border-box;
  219. }
  220. .emoji {
  221. max-width:none;
  222. }
  223. span.frame {
  224. display:block;
  225. overflow:hidden;
  226. }
  227. span.frame>span {
  228. display:block;
  229. float:left;
  230. width:auto;
  231. padding:7px;
  232. margin:13px 0 0;
  233. overflow:hidden;
  234. border:1px solid #ddd;
  235. }
  236. span.frame span img {
  237. display:block;
  238. float:left;
  239. }
  240. span.frame span span {
  241. display:block;
  242. padding:5px 0 0;
  243. clear:both;
  244. color:#333;
  245. }
  246. span.align-center {
  247. display:block;
  248. overflow:hidden;
  249. clear:both;
  250. }
  251. span.align-center>span {
  252. display:block;
  253. margin:13px auto 0;
  254. overflow:hidden;
  255. text-align:center;
  256. }
  257. span.align-center span img {
  258. margin:0 auto;
  259. text-align:center;
  260. }
  261. span.align-right {
  262. display:block;
  263. overflow:hidden;
  264. clear:both;
  265. }
  266. span.align-right>span {
  267. display:block;
  268. margin:13px 0 0;
  269. overflow:hidden;
  270. text-align:right;
  271. }
  272. span.align-right span img {
  273. margin:0;
  274. text-align:right;
  275. }
  276. span.float-left {
  277. display:block;
  278. float:left;
  279. margin-right:13px;
  280. overflow:hidden;
  281. }
  282. span.float-left span {
  283. margin:13px 0 0;
  284. }
  285. span.float-right {
  286. display:block;
  287. float:right;
  288. margin-left:13px;
  289. overflow:hidden;
  290. }
  291. span.float-right>span {
  292. display:block;
  293. margin:13px auto 0;
  294. overflow:hidden;
  295. text-align:right;
  296. }
  297. code,
  298. tt {
  299. padding:0;
  300. padding-top:0.2em;
  301. padding-bottom:0.2em;
  302. margin:0;
  303. font-size:85%;
  304. background-color:rgba(0,0,0,0.04);
  305. border-radius:3px;
  306. }
  307. code:before,
  308. code:after,
  309. tt:before,
  310. tt:after {
  311. letter-spacing:-0.2em;
  312. content:"\00a0";
  313. }
  314. code br,
  315. tt br {
  316. display:none;
  317. }
  318. del code {
  319. text-decoration:inherit;
  320. }
  321. pre>code {
  322. padding:0;
  323. margin:0;
  324. font-size:100%;
  325. word-break:normal;
  326. white-space:pre;
  327. background:transparent;
  328. border:0;
  329. }
  330. .highlight {
  331. margin-bottom:16px;
  332. }
  333. .highlight pre,
  334. pre {
  335. padding:16px;
  336. overflow:auto;
  337. font-size:85%;
  338. line-height:1.45;
  339. background-color:#f7f7f7;
  340. border-radius:3px;
  341. }
  342. .highlight pre {
  343. margin-bottom:0;
  344. word-break:normal;
  345. }
  346. pre {
  347. word-wrap:normal;
  348. }
  349. pre code,
  350. pre tt {
  351. display:inline;
  352. max-width:initial;
  353. padding:0;
  354. margin:0;
  355. overflow:initial;
  356. line-height:inherit;
  357. word-wrap:normal;
  358. background-color:transparent;
  359. border:0;
  360. }
  361. pre code:before,
  362. pre code:after,
  363. pre tt:before,
  364. pre tt:after {
  365. content:normal;
  366. }
  367. kbd {
  368. display:inline-block;
  369. padding:3px 5px;
  370. font-size:11px;
  371. line-height:10px;
  372. color:#555;
  373. vertical-align:middle;
  374. background-color:#fcfcfc;
  375. border:solid 1px #ccc;
  376. border-bottom-color:#bbb;
  377. border-radius:3px;
  378. box-shadow:inset 0 -1px 0 #bbb;
  379. }
  380. .csv-data td,
  381. .csv-data th {
  382. padding:5px;
  383. overflow:hidden;
  384. font-size:12px;
  385. line-height:1;
  386. text-align:left;
  387. white-space:nowrap;
  388. }
  389. .csv-data .blob-num {
  390. padding:10px 8px 9px;
  391. text-align:right;
  392. background:#fff;border:0;
  393. }
  394. .csv-data tr {
  395. border-top:0;
  396. }
  397. .csv-data th {
  398. font-weight:bold;
  399. background:#f8f8f8;border-top:0;
  400. }
  401. }
  402. /* Author: jmblog */
  403. /* Project: https://github.com/jmblog/color-themes-for-google-code-prettify */
  404. /* GitHub Theme */
  405. /* Pretty printing styles. Used with prettify.js. */
  406. /* SPAN elements with the classes below are added by prettyprint. */
  407. /* plain text */
  408. .pln {
  409. color: #333333;
  410. }
  411. @media screen {
  412. /* string content */
  413. .str {
  414. color: #dd1144;
  415. }
  416. /* a keyword */
  417. .kwd {
  418. color: #333333;
  419. }
  420. /* a comment */
  421. .com {
  422. color: #999988;
  423. font-style: italic;
  424. }
  425. /* a type name */
  426. .typ {
  427. color: #445588;
  428. }
  429. /* a literal value */
  430. .lit {
  431. color: #445588;
  432. }
  433. /* punctuation */
  434. .pun {
  435. color: #333333;
  436. }
  437. /* lisp open bracket */
  438. .opn {
  439. color: #333333;
  440. }
  441. /* lisp close bracket */
  442. .clo {
  443. color: #333333;
  444. }
  445. /* a markup tag name */
  446. .tag {
  447. color: navy;
  448. }
  449. /* a markup attribute name */
  450. .atn {
  451. color: teal;
  452. }
  453. /* a markup attribute value */
  454. .atv {
  455. color: #dd1144;
  456. }
  457. /* a declaration */
  458. .dec {
  459. color: #333333;
  460. }
  461. /* a variable name */
  462. .var {
  463. color: teal;
  464. }
  465. /* a function name */
  466. .fun {
  467. color: #990000;
  468. }
  469. }
  470. /* Use higher contrast and text-weight for printable form. */
  471. @media print,
  472. projection {
  473. .str {
  474. color: #006600;
  475. }
  476. .kwd {
  477. color: #006;
  478. font-weight: bold;
  479. }
  480. .com {
  481. color: #600;
  482. font-style: italic;
  483. }
  484. .typ {
  485. color: #404;
  486. font-weight: bold;
  487. }
  488. .lit {
  489. color: #004444;
  490. }
  491. .pun,
  492. .opn,
  493. .clo {
  494. color: #444400;
  495. }
  496. .tag {
  497. color: #006;
  498. font-weight: bold;
  499. }
  500. .atn {
  501. color: #440044;
  502. }
  503. .atv {
  504. color: #006600;
  505. }
  506. }
  507. /* Specify class=linenums on a pre to get line numbering */
  508. ol.linenums {
  509. margin-top: 0;
  510. margin-bottom: 0;
  511. }