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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  1. .markdown:not(code) {
  2. overflow: hidden;
  3. font-size: 16px;
  4. line-height: 1.6 !important;
  5. word-wrap: break-word;
  6. &.ui.segment {
  7. padding: 3em;
  8. }
  9. &.file-view {
  10. padding: 2em 2em 2em !important;
  11. }
  12. > *:first-child {
  13. margin-top: 0 !important;
  14. }
  15. > *:last-child {
  16. margin-bottom: 0 !important;
  17. }
  18. a:not([href]) {
  19. color: inherit;
  20. text-decoration: none;
  21. }
  22. .absent {
  23. color: #c00;
  24. }
  25. .anchor {
  26. position: absolute;
  27. top: 0;
  28. left: 0;
  29. display: block;
  30. padding-right: 6px;
  31. padding-left: 30px;
  32. margin-left: -30px;
  33. }
  34. .anchor:focus {
  35. outline: none;
  36. }
  37. h1,
  38. h2,
  39. h3,
  40. h4,
  41. h5,
  42. h6 {
  43. position: relative;
  44. margin-top: 1em;
  45. margin-bottom: 16px;
  46. font-weight: bold;
  47. line-height: 1.4;
  48. &:first-of-type {
  49. margin-top: 0 !important;
  50. }
  51. }
  52. h1 .octicon-link,
  53. h2 .octicon-link,
  54. h3 .octicon-link,
  55. h4 .octicon-link,
  56. h5 .octicon-link,
  57. h6 .octicon-link {
  58. display: none;
  59. color: #000;
  60. vertical-align: middle;
  61. }
  62. h1:hover .anchor,
  63. h2:hover .anchor,
  64. h3:hover .anchor,
  65. h4:hover .anchor,
  66. h5:hover .anchor,
  67. h6:hover .anchor {
  68. padding-left: 8px;
  69. margin-left: -30px;
  70. text-decoration: none;
  71. }
  72. h1:hover .anchor .octicon-link,
  73. h2:hover .anchor .octicon-link,
  74. h3:hover .anchor .octicon-link,
  75. h4:hover .anchor .octicon-link,
  76. h5:hover .anchor .octicon-link,
  77. h6:hover .anchor .octicon-link {
  78. display: inline-block;
  79. }
  80. h1 tt,
  81. h1 code,
  82. h2 tt,
  83. h2 code,
  84. h3 tt,
  85. h3 code,
  86. h4 tt,
  87. h4 code,
  88. h5 tt,
  89. h5 code,
  90. h6 tt,
  91. h6 code {
  92. font-size: inherit;
  93. }
  94. h1 {
  95. padding-bottom: 0.3em;
  96. font-size: 2.25em;
  97. line-height: 1.2;
  98. border-bottom: 1px solid #eee;
  99. }
  100. h1 .anchor {
  101. line-height: 1;
  102. }
  103. h2 {
  104. padding-bottom: 0.3em;
  105. font-size: 1.75em;
  106. line-height: 1.225;
  107. border-bottom: 1px solid #eee;
  108. }
  109. h2 .anchor {
  110. line-height: 1;
  111. }
  112. h3 {
  113. font-size: 1.5em;
  114. line-height: 1.43;
  115. }
  116. h3 .anchor {
  117. line-height: 1.2;
  118. }
  119. h4 {
  120. font-size: 1.25em;
  121. }
  122. h4 .anchor {
  123. line-height: 1.2;
  124. }
  125. h5 {
  126. font-size: 1em;
  127. }
  128. h5 .anchor {
  129. line-height: 1.1;
  130. }
  131. h6 {
  132. font-size: 1em;
  133. color: #777;
  134. }
  135. h6 .anchor {
  136. line-height: 1.1;
  137. }
  138. p,
  139. blockquote,
  140. ul,
  141. ol,
  142. dl,
  143. table,
  144. pre {
  145. margin-top: 0;
  146. margin-bottom: 16px;
  147. }
  148. blockquote {
  149. margin-left: 0;
  150. }
  151. hr {
  152. height: 4px;
  153. padding: 0;
  154. margin: 16px 0;
  155. background-color: #e7e7e7;
  156. border: 0 none;
  157. }
  158. ul,
  159. ol {
  160. padding-left: 2em;
  161. }
  162. ul.no-list,
  163. ol.no-list {
  164. padding: 0;
  165. list-style-type: none;
  166. }
  167. ul ul,
  168. ul ol,
  169. ol ol,
  170. ol ul {
  171. margin-top: 0;
  172. margin-bottom: 0;
  173. }
  174. ol ol,
  175. ul ol {
  176. list-style-type: lower-roman;
  177. }
  178. li > p {
  179. margin-top: 0;
  180. }
  181. dl {
  182. padding: 0;
  183. }
  184. dl dt {
  185. padding: 0;
  186. margin-top: 16px;
  187. font-size: 1em;
  188. font-style: italic;
  189. font-weight: bold;
  190. }
  191. dl dd {
  192. padding: 0 16px;
  193. margin-bottom: 16px;
  194. }
  195. blockquote {
  196. padding: 0 15px;
  197. color: #777;
  198. border-left: 4px solid #ddd;
  199. }
  200. blockquote > :first-child {
  201. margin-top: 0;
  202. }
  203. blockquote > :last-child {
  204. margin-bottom: 0;
  205. }
  206. table {
  207. width: auto;
  208. overflow: auto;
  209. word-break: normal;
  210. word-break: keep-all;
  211. display: block;
  212. }
  213. table th {
  214. font-weight: bold;
  215. }
  216. table th,
  217. table td {
  218. padding: 6px 13px !important;
  219. border: 1px solid #ddd !important;
  220. }
  221. table tr {
  222. background-color: #fff;
  223. border-top: 1px solid #ccc;
  224. }
  225. table tr:nth-child(2n) {
  226. background-color: #f8f8f8;
  227. }
  228. img {
  229. max-width: 100%;
  230. box-sizing: border-box;
  231. }
  232. .emoji {
  233. max-width: none;
  234. }
  235. span.frame {
  236. display: block;
  237. overflow: hidden;
  238. }
  239. span.frame > span {
  240. display: block;
  241. float: left;
  242. width: auto;
  243. padding: 7px;
  244. margin: 13px 0 0;
  245. overflow: hidden;
  246. border: 1px solid #ddd;
  247. }
  248. span.frame span img {
  249. display: block;
  250. float: left;
  251. }
  252. span.frame span span {
  253. display: block;
  254. padding: 5px 0 0;
  255. clear: both;
  256. color: #333;
  257. }
  258. span.align-center {
  259. display: block;
  260. overflow: hidden;
  261. clear: both;
  262. }
  263. span.align-center > span {
  264. display: block;
  265. margin: 13px auto 0;
  266. overflow: hidden;
  267. text-align: center;
  268. }
  269. span.align-center span img {
  270. margin: 0 auto;
  271. text-align: center;
  272. }
  273. span.align-right {
  274. display: block;
  275. overflow: hidden;
  276. clear: both;
  277. }
  278. span.align-right > span {
  279. display: block;
  280. margin: 13px 0 0;
  281. overflow: hidden;
  282. text-align: right;
  283. }
  284. span.align-right span img {
  285. margin: 0;
  286. text-align: right;
  287. }
  288. span.float-left {
  289. display: block;
  290. float: left;
  291. margin-right: 13px;
  292. overflow: hidden;
  293. }
  294. span.float-left span {
  295. margin: 13px 0 0;
  296. }
  297. span.float-right {
  298. display: block;
  299. float: right;
  300. margin-left: 13px;
  301. overflow: hidden;
  302. }
  303. span.float-right > span {
  304. display: block;
  305. margin: 13px auto 0;
  306. overflow: hidden;
  307. text-align: right;
  308. }
  309. code,
  310. tt {
  311. padding: 0.2em 0;
  312. margin: 0;
  313. font-size: 85%;
  314. background-color: rgba(0, 0, 0, 0.04);
  315. border-radius: 3px;
  316. }
  317. code:before,
  318. code:after,
  319. tt:before,
  320. tt:after {
  321. letter-spacing: -0.2em;
  322. content: "\00a0";
  323. }
  324. code br,
  325. tt br {
  326. display: none;
  327. }
  328. del code {
  329. text-decoration: inherit;
  330. }
  331. pre > code {
  332. padding: 0;
  333. margin: 0;
  334. font-size: 100%;
  335. word-break: normal;
  336. white-space: pre;
  337. background: transparent;
  338. border: 0;
  339. }
  340. .highlight {
  341. margin-bottom: 16px;
  342. }
  343. .highlight pre,
  344. pre {
  345. padding: 16px;
  346. overflow: auto;
  347. font-size: 85%;
  348. line-height: 1.45;
  349. background-color: #f7f7f7;
  350. border-radius: 3px;
  351. }
  352. .highlight pre {
  353. margin-bottom: 0;
  354. word-break: normal;
  355. }
  356. pre {
  357. word-wrap: normal;
  358. }
  359. pre code,
  360. pre tt {
  361. display: inline;
  362. max-width: initial;
  363. padding: 0;
  364. margin: 0;
  365. overflow: initial;
  366. line-height: inherit;
  367. word-wrap: normal;
  368. background-color: transparent;
  369. border: 0;
  370. }
  371. pre code:before,
  372. pre code:after,
  373. pre tt:before,
  374. pre tt:after {
  375. content: normal;
  376. }
  377. kbd {
  378. display: inline-block;
  379. padding: 3px 5px;
  380. font-size: 11px;
  381. line-height: 10px;
  382. color: #555;
  383. vertical-align: middle;
  384. background-color: #fcfcfc;
  385. border: solid 1px #ccc;
  386. border-bottom-color: #bbb;
  387. border-radius: 3px;
  388. box-shadow: inset 0 -1px 0 #bbb;
  389. }
  390. input[type="checkbox"] {
  391. vertical-align: middle !important;
  392. }
  393. .csv-data td,
  394. .csv-data th {
  395. padding: 5px;
  396. overflow: hidden;
  397. font-size: 12px;
  398. line-height: 1;
  399. text-align: left;
  400. white-space: nowrap;
  401. }
  402. .csv-data .blob-num {
  403. padding: 10px 8px 9px;
  404. text-align: right;
  405. background: #fff;
  406. border: 0;
  407. }
  408. .csv-data tr {
  409. border-top: 0;
  410. }
  411. .csv-data th {
  412. font-weight: bold;
  413. background: #f8f8f8;
  414. border-top: 0;
  415. }
  416. .ui.list .list, ol.ui.list ol, ul.ui.list ul {
  417. padding-left: 2em;
  418. }
  419. }