simplemde-dark.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815
  1. /* SimpleMDE Theme Dark v0.0.0 https://github.com/xcatliu/simplemde-theme-dark#readme */
  2. @charset "UTF-8";
  3. /* THIS FILE IS COPIED FROM CODEMIRROR.CSS, PLEASE DONOT EDIT IT. */
  4. /* BASICS */
  5. .cm-s-paper.CodeMirror {
  6. /* Set height, width, borders, and global font properties here */
  7. font-family: monospace;
  8. height: 300px;
  9. color: black;
  10. }
  11. /* PADDING */
  12. .cm-s-paper .CodeMirror-lines {
  13. padding: 4px 0;
  14. /* Vertical padding around content */
  15. }
  16. .cm-s-paper .CodeMirror pre {
  17. padding: 0 4px;
  18. /* Horizontal padding of content */
  19. }
  20. .cm-s-paper .CodeMirror-scrollbar-filler,
  21. .cm-s-paper .CodeMirror-gutter-filler {
  22. background-color: white;
  23. /* The little square between H and V scrollbars */
  24. }
  25. /* GUTTER */
  26. .cm-s-paper .CodeMirror-gutters {
  27. border-right: 1px solid #ddd;
  28. background-color: #f7f7f7;
  29. white-space: nowrap;
  30. }
  31. .cm-s-paper .CodeMirror-linenumber {
  32. padding: 0 3px 0 5px;
  33. min-width: 20px;
  34. text-align: right;
  35. color: #999;
  36. white-space: nowrap;
  37. }
  38. .cm-s-paper .CodeMirror-guttermarker {
  39. color: black;
  40. }
  41. .cm-s-paper .CodeMirror-guttermarker-subtle {
  42. color: #999;
  43. }
  44. /* CURSOR */
  45. .cm-s-paper .CodeMirror-cursor {
  46. border-left: 1px solid black;
  47. border-right: none;
  48. width: 0;
  49. }
  50. /* Shown when moving in bi-directional text */
  51. .cm-s-paper.CodeMirror div.CodeMirror-secondarycursor {
  52. border-left: 1px solid silver;
  53. }
  54. .cm-s-paper .cm-fat-cursor .CodeMirror-cursor {
  55. width: auto;
  56. border: 0 !important;
  57. background: #7e7;
  58. }
  59. .cm-s-paper .cm-fat-cursor div.CodeMirror-cursors {
  60. z-index: 1;
  61. }
  62. .cm-s-paper .cm-animate-fat-cursor {
  63. width: auto;
  64. border: 0;
  65. -webkit-animation: blink 1.06s steps(1) infinite;
  66. animation: blink 1.06s steps(1) infinite;
  67. background-color: #7e7;
  68. }
  69. @-webkit-keyframes blink {
  70. 0% {
  71. }
  72. 50% {
  73. background-color: transparent;
  74. }
  75. 100% {
  76. }
  77. }
  78. @keyframes blink {
  79. 0% {
  80. }
  81. 50% {
  82. background-color: transparent;
  83. }
  84. 100% {
  85. }
  86. }
  87. /* Can style cursor different in overwrite (non-insert) mode */
  88. .cm-s-paper .cm-tab {
  89. display: inline-block;
  90. text-decoration: inherit;
  91. }
  92. .cm-s-paper .CodeMirror-rulers {
  93. position: absolute;
  94. left: 0;
  95. right: 0;
  96. top: -50px;
  97. bottom: -20px;
  98. overflow: hidden;
  99. }
  100. .cm-s-paper .CodeMirror-ruler {
  101. border-left: 1px solid #ccc;
  102. top: 0;
  103. bottom: 0;
  104. position: absolute;
  105. }
  106. .cm-s-paper .cm-negative {
  107. color: #d44;
  108. }
  109. .cm-s-paper .cm-positive {
  110. color: #292;
  111. }
  112. .cm-s-paper .cm-header,
  113. .cm-s-paper .cm-strong {
  114. font-weight: bold;
  115. }
  116. .cm-s-paper .cm-em {
  117. font-style: italic;
  118. }
  119. .cm-s-paper .cm-link {
  120. text-decoration: underline;
  121. }
  122. .cm-s-paper .cm-strikethrough {
  123. text-decoration: line-through;
  124. }
  125. .cm-s-paper .cm-invalidchar {
  126. color: #f00;
  127. }
  128. .cm-s-paper .CodeMirror-composing {
  129. border-bottom: 2px solid;
  130. }
  131. /* Default styles for common addons */
  132. div.cm-s-paper.CodeMirror span.CodeMirror-matchingbracket {
  133. color: #0f0;
  134. }
  135. div.cm-s-paper.CodeMirror span.CodeMirror-nonmatchingbracket {
  136. color: #f22;
  137. }
  138. .cm-s-paper .CodeMirror-matchingtag {
  139. background: rgba(255, 150, 0, 0.3);
  140. }
  141. .cm-s-paper .CodeMirror-activeline-background {
  142. background: #e8f2ff;
  143. }
  144. /* STOP */
  145. /* The rest of this file contains styles related to the mechanics of
  146. the editor. You probably shouldn't touch them. */
  147. .cm-s-paper.CodeMirror {
  148. position: relative;
  149. overflow: hidden;
  150. background: white;
  151. }
  152. .cm-s-paper .CodeMirror-scroll {
  153. overflow: scroll !important;
  154. /* Things will break if this is overridden */
  155. /* 30px is the magic margin used to hide the element's real scrollbars */
  156. /* See overflow: hidden in .CodeMirror */
  157. margin-bottom: -30px;
  158. margin-right: -30px;
  159. padding-bottom: 30px;
  160. height: 100%;
  161. outline: none;
  162. /* Prevent dragging from highlighting the element */
  163. position: relative;
  164. }
  165. .cm-s-paper .CodeMirror-sizer {
  166. position: relative;
  167. border-right: 30px solid transparent;
  168. }
  169. /* The fake, visible scrollbars. Used to force redraw during scrolling
  170. before actual scrolling happens, thus preventing shaking and
  171. flickering artifacts. */
  172. .cm-s-paper .CodeMirror-vscrollbar,
  173. .cm-s-paper .CodeMirror-hscrollbar,
  174. .cm-s-paper .CodeMirror-scrollbar-filler,
  175. .cm-s-paper .CodeMirror-gutter-filler {
  176. position: absolute;
  177. z-index: 6;
  178. display: none;
  179. }
  180. .cm-s-paper .CodeMirror-vscrollbar {
  181. right: 0;
  182. top: 0;
  183. overflow-x: hidden;
  184. overflow-y: scroll;
  185. }
  186. .cm-s-paper .CodeMirror-hscrollbar {
  187. bottom: 0;
  188. left: 0;
  189. overflow-y: hidden;
  190. overflow-x: scroll;
  191. }
  192. .cm-s-paper .CodeMirror-scrollbar-filler {
  193. right: 0;
  194. bottom: 0;
  195. }
  196. .cm-s-paper .CodeMirror-gutter-filler {
  197. left: 0;
  198. bottom: 0;
  199. }
  200. .cm-s-paper .CodeMirror-gutters {
  201. position: absolute;
  202. left: 0;
  203. top: 0;
  204. min-height: 100%;
  205. z-index: 3;
  206. }
  207. .cm-s-paper .CodeMirror-gutter {
  208. white-space: normal;
  209. height: 100%;
  210. display: inline-block;
  211. vertical-align: top;
  212. margin-bottom: -30px;
  213. }
  214. .cm-s-paper .CodeMirror-gutter-wrapper {
  215. position: absolute;
  216. z-index: 4;
  217. background: none !important;
  218. border: none !important;
  219. }
  220. .cm-s-paper .CodeMirror-gutter-background {
  221. position: absolute;
  222. top: 0;
  223. bottom: 0;
  224. z-index: 4;
  225. }
  226. .cm-s-paper .CodeMirror-gutter-elt {
  227. position: absolute;
  228. cursor: default;
  229. z-index: 4;
  230. }
  231. .cm-s-paper .CodeMirror-gutter-wrapper {
  232. -webkit-user-select: none;
  233. -moz-user-select: none;
  234. -ms-user-select: none;
  235. user-select: none;
  236. }
  237. .cm-s-paper .CodeMirror-lines {
  238. cursor: text;
  239. min-height: 1px;
  240. /* prevents collapsing before first draw */
  241. }
  242. .cm-s-paper.CodeMirror pre {
  243. /* Reset some styles that the rest of the page might have set */
  244. border-radius: 0;
  245. border-width: 0;
  246. background: transparent;
  247. font-family: inherit;
  248. font-size: inherit;
  249. margin: 0;
  250. white-space: pre;
  251. word-wrap: normal;
  252. line-height: inherit;
  253. color: inherit;
  254. z-index: 2;
  255. position: relative;
  256. overflow: visible;
  257. -webkit-tap-highlight-color: transparent;
  258. -webkit-font-variant-ligatures: contextual;
  259. font-variant-ligatures: contextual;
  260. }
  261. .cm-s-paper.CodeMirror-wrap pre {
  262. word-wrap: break-word;
  263. white-space: pre-wrap;
  264. word-break: normal;
  265. }
  266. .cm-s-paper .CodeMirror-linebackground {
  267. position: absolute;
  268. left: 0;
  269. right: 0;
  270. top: 0;
  271. bottom: 0;
  272. z-index: 0;
  273. }
  274. .cm-s-paper .CodeMirror-linewidget {
  275. position: relative;
  276. z-index: 2;
  277. overflow: auto;
  278. }
  279. .cm-s-paper .CodeMirror-code {
  280. outline: none;
  281. }
  282. /* Force content-box sizing for the elements where we expect it */
  283. .cm-s-paper .CodeMirror-scroll,
  284. .cm-s-paper .CodeMirror-sizer,
  285. .cm-s-paper .CodeMirror-gutter,
  286. .cm-s-paper .CodeMirror-gutters,
  287. .cm-s-paper .CodeMirror-linenumber {
  288. box-sizing: content-box;
  289. }
  290. .cm-s-paper .CodeMirror-measure {
  291. position: absolute;
  292. width: 100%;
  293. height: 0;
  294. overflow: hidden;
  295. visibility: hidden;
  296. }
  297. .cm-s-paper .CodeMirror-cursor {
  298. position: absolute;
  299. pointer-events: none;
  300. }
  301. .cm-s-paper .CodeMirror-measure pre {
  302. position: static;
  303. }
  304. .cm-s-paper div.CodeMirror-cursors {
  305. visibility: hidden;
  306. position: relative;
  307. z-index: 3;
  308. }
  309. .cm-s-paper div.CodeMirror-dragcursors {
  310. visibility: visible;
  311. }
  312. .cm-s-paper.CodeMirror-focused div.CodeMirror-cursors {
  313. visibility: visible;
  314. }
  315. .cm-s-paper .CodeMirror-selected {
  316. background: #d9d9d9;
  317. }
  318. .cm-s-paper.CodeMirror-focused .CodeMirror-selected {
  319. background: #d7d4f0;
  320. }
  321. .cm-s-paper .CodeMirror-crosshair {
  322. cursor: crosshair;
  323. }
  324. .cm-s-paper .CodeMirror-line::-moz-selection,
  325. .cm-s-paper .CodeMirror-line > span::-moz-selection,
  326. .cm-s-paper .CodeMirror-line > span > span::-moz-selection {
  327. background: #d7d4f0;
  328. }
  329. .cm-s-paper .CodeMirror-line::selection,
  330. .cm-s-paper .CodeMirror-line > span::selection,
  331. .cm-s-paper .CodeMirror-line > span > span::selection {
  332. background: #d7d4f0;
  333. }
  334. .cm-s-paper .CodeMirror-line::-moz-selection,
  335. .cm-s-paper .CodeMirror-line > span::-moz-selection,
  336. .cm-s-paper .CodeMirror-line > span > span::-moz-selection {
  337. background: #d7d4f0;
  338. }
  339. .cm-s-paper .cm-searching {
  340. background: #ffa;
  341. background: rgba(255, 255, 0, 0.4);
  342. }
  343. /* Used to force a border model for a node */
  344. .cm-s-paper .cm-force-border {
  345. padding-right: 0.1px;
  346. }
  347. @media print {
  348. /* Hide the cursor when printing */
  349. .cm-s-paper.CodeMirror div.CodeMirror-cursors {
  350. visibility: hidden;
  351. }
  352. }
  353. /* See issue #2901 */
  354. .cm-s-paper .cm-tab-wrap-hack:after {
  355. content: "";
  356. }
  357. /* Help users use markselection to safely style text background */
  358. .cm-s-paper span.CodeMirror-selectedtext {
  359. background: none;
  360. }
  361. .cm-s-paper.CodeMirror {
  362. background-color: #444;
  363. border: 1px solid #555;
  364. border-bottom-left-radius: 3px;
  365. border-bottom-right-radius: 3px;
  366. color: #aaa;
  367. font-family: inherit;
  368. height: auto;
  369. line-height: 1.5;
  370. min-height: 300px;
  371. padding: 14px;
  372. z-index: 1;
  373. }
  374. .cm-s-paper .CodeMirror-scroll {
  375. margin-bottom: -32px;
  376. margin-right: -32px;
  377. min-height: 300px;
  378. padding-bottom: 32px;
  379. }
  380. .cm-s-paper .CodeMirror-fullscreen {
  381. background-color: #444;
  382. border: 0;
  383. border-top: 1px solid #555;
  384. bottom: 0;
  385. height: auto;
  386. left: 0;
  387. position: fixed !important;
  388. right: 0;
  389. top: 58px;
  390. z-index: 9;
  391. }
  392. .cm-s-paper .CodeMirror-sided {
  393. width: 50% !important;
  394. }
  395. .cm-s-paper.CodeMirror .CodeMirror-placeholder {
  396. color: #777;
  397. }
  398. .cm-s-paper .CodeMirror-cursor {
  399. border-left-color: #aaa;
  400. }
  401. .cm-s-paper .CodeMirror-lines {
  402. padding: 0;
  403. }
  404. .cm-s-paper.CodeMirror pre {
  405. padding: 0 0;
  406. }
  407. .cm-s-paper .CodeMirror-selected,
  408. .cm-s-paper.CodeMirror-focused .CodeMirror-selected,
  409. .cm-s-paper .CodeMirror-line::-moz-selection,
  410. .cm-s-paper .CodeMirror-line > span::-moz-selection,
  411. .cm-s-paper .CodeMirror-line > span > span::-moz-selection {
  412. background-color: rgba(255, 255, 255, 0.1);
  413. }
  414. .cm-s-paper .CodeMirror-selected,
  415. .cm-s-paper.CodeMirror-focused .CodeMirror-selected,
  416. .cm-s-paper .CodeMirror-line::selection,
  417. .cm-s-paper .CodeMirror-line > span::selection,
  418. .cm-s-paper .CodeMirror-line > span > span::selection {
  419. background-color: rgba(255, 255, 255, 0.1);
  420. }
  421. .cm-s-paper.CodeMirror .CodeMirror-code .cm-tag {
  422. color: #95bf40;
  423. }
  424. .cm-s-paper.CodeMirror .CodeMirror-code .cm-attribute {
  425. color: #95bf40;
  426. }
  427. .cm-s-paper.CodeMirror .CodeMirror-code .cm-string {
  428. color: #777;
  429. }
  430. .cm-s-paper.CodeMirror .CodeMirror-code .cm-link {
  431. color: #ffd500;
  432. }
  433. .cm-s-paper.CodeMirror .CodeMirror-code .cm-url {
  434. color: #777;
  435. }
  436. .cm-s-paper.CodeMirror .CodeMirror-code .cm-hr {
  437. color: #777;
  438. }
  439. .cm-s-paper.CodeMirror .CodeMirror-code .cm-formatting-header,
  440. .cm-s-paper.CodeMirror .CodeMirror-code .cm-formatting-em,
  441. .cm-s-paper.CodeMirror .CodeMirror-code .cm-formatting-strong,
  442. .cm-s-paper.CodeMirror .CodeMirror-code .cm-formatting-strikethrough,
  443. .cm-s-paper.CodeMirror .CodeMirror-code .cm-formatting-code,
  444. .cm-s-paper.CodeMirror .CodeMirror-code .cm-formatting-code-block {
  445. color: #777;
  446. }
  447. .cm-s-paper.CodeMirror .CodeMirror-code .cm-header-1,
  448. .cm-s-paper.CodeMirror .CodeMirror-code .cm-header-2,
  449. .cm-s-paper.CodeMirror .CodeMirror-code .cm-header-3,
  450. .cm-s-paper.CodeMirror .CodeMirror-code .cm-header-4,
  451. .cm-s-paper.CodeMirror .CodeMirror-code .cm-header-5,
  452. .cm-s-paper.CodeMirror .CodeMirror-code .cm-header-6 {
  453. line-height: 2;
  454. }
  455. .cm-s-paper.CodeMirror .CodeMirror-code .cm-header,
  456. .cm-s-paper.CodeMirror .CodeMirror-code .cm-strong {
  457. font-weight: 600;
  458. }
  459. .cm-s-paper.CodeMirror .CodeMirror-code .cm-comment {
  460. background-color: rgba(255, 255, 255, 0.05);
  461. font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
  462. monospace;
  463. padding: 6px 0 4px;
  464. }
  465. .cm-s-paper.CodeMirror
  466. .CodeMirror-code
  467. span.CodeMirror-selectedtext.cm-comment {
  468. background-color: rgba(255, 255, 255, 0.05);
  469. }
  470. .cm-s-paper.CodeMirror .CodeMirror-code .cm-quote {
  471. color: #777;
  472. }
  473. .cm-s-paper.CodeMirror .CodeMirror-code .cm-strikethrough {
  474. text-decoration: line-through;
  475. }
  476. .cm-s-paper .editor-preview {
  477. height: 100%;
  478. left: 0;
  479. position: absolute;
  480. top: 0;
  481. width: 100%;
  482. z-index: 2;
  483. }
  484. .cm-s-paper .editor-preview-side {
  485. border: 0;
  486. border-left: 1px solid #555;
  487. border-top: 1px solid #555;
  488. bottom: 0;
  489. position: fixed;
  490. right: 0;
  491. top: 58px;
  492. width: 50%;
  493. z-index: 9;
  494. }
  495. .cm-s-paper .editor-preview,
  496. .cm-s-paper .editor-preview-side {
  497. background-color: #444;
  498. box-sizing: border-box;
  499. color: #aaa;
  500. display: none;
  501. font-family: inherit;
  502. line-height: 1.5;
  503. overflow: auto;
  504. padding: 0 14px 14px;
  505. }
  506. .cm-s-paper .editor-preview pre,
  507. .cm-s-paper .editor-preview-side pre {
  508. background-color: rgba(255, 255, 255, 0.05);
  509. font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
  510. monospace;
  511. line-height: 1.2;
  512. margin-top: 14px;
  513. overflow: auto;
  514. -webkit-overflow-scrolling: touch;
  515. padding: 14px;
  516. }
  517. .cm-s-paper .editor-preview pre code,
  518. .cm-s-paper .editor-preview-side pre code {
  519. background-color: transparent;
  520. padding: 0;
  521. }
  522. .cm-s-paper .editor-preview-active,
  523. .cm-s-paper .editor-preview-active-side {
  524. display: block;
  525. }
  526. .cm-s-paper .editor-preview table,
  527. .cm-s-paper .editor-preview-side table {
  528. background-color: #444;
  529. border: 0;
  530. border-collapse: collapse;
  531. border-spacing: 0;
  532. width: 100%;
  533. }
  534. .cm-s-paper .editor-preview table caption,
  535. .cm-s-paper .editor-preview-side table caption {
  536. caption-side: bottom;
  537. color: #777;
  538. padding: 7px;
  539. text-align: left;
  540. }
  541. .cm-s-paper .editor-preview table th,
  542. .cm-s-paper .editor-preview table td,
  543. .cm-s-paper .editor-preview-side table th,
  544. .cm-s-paper .editor-preview-side table td {
  545. border: 0;
  546. border-bottom: 1px solid #555;
  547. padding: 7px;
  548. text-align: left;
  549. }
  550. .cm-s-paper .editor-preview table th,
  551. .cm-s-paper .editor-preview-side table th {
  552. background-color: rgba(255, 255, 255, 0.05);
  553. font-weight: 600;
  554. }
  555. .cm-s-paper .editor-preview audio:not([controls]),
  556. .cm-s-paper .editor-preview-side audio:not([controls]) {
  557. display: none;
  558. height: 0;
  559. }
  560. .cm-s-paper .editor-preview img,
  561. .cm-s-paper .editor-preview-side img {
  562. max-width: 100%;
  563. vertical-align: middle;
  564. }
  565. .cm-s-paper .editor-preview audio,
  566. .cm-s-paper .editor-preview video,
  567. .cm-s-paper .editor-preview-side audio,
  568. .cm-s-paper .editor-preview-side video {
  569. width: 100%;
  570. }
  571. .cm-s-paper .editor-toolbar {
  572. background-color: #444;
  573. border: 1px solid #555;
  574. border-bottom: 0;
  575. border-top-left-radius: 3px;
  576. border-top-right-radius: 3px;
  577. padding: 0 14px;
  578. position: relative;
  579. -webkit-user-select: none;
  580. -moz-user-select: none;
  581. -ms-user-select: none;
  582. user-select: none;
  583. }
  584. .cm-s-paper .editor-toolbar::before,
  585. .cm-s-paper .editor-toolbar::after {
  586. content: " ";
  587. display: block;
  588. height: 1px;
  589. }
  590. .cm-s-paper .editor-toolbar::before {
  591. margin-bottom: 7px;
  592. }
  593. .cm-s-paper .editor-toolbar::after {
  594. margin-top: 7px;
  595. }
  596. .cm-s-paper .editor-toolbar a {
  597. border: 1px solid transparent;
  598. border-radius: 3px;
  599. color: #777 !important;
  600. cursor: pointer;
  601. display: inline-block;
  602. font-size: 80%;
  603. height: 30px;
  604. margin: 0;
  605. text-align: center;
  606. text-decoration: none !important;
  607. width: 30px;
  608. }
  609. .cm-s-paper .editor-toolbar a.active,
  610. .cm-s-paper .editor-toolbar a:hover {
  611. border-color: #555;
  612. color: #aaa !important;
  613. }
  614. .cm-s-paper .editor-toolbar a::before {
  615. line-height: 30px;
  616. }
  617. .cm-s-paper .editor-toolbar a.fa-header-x::after {
  618. bottom: -0.25em;
  619. font-family: inherit;
  620. font-size: 80%;
  621. line-height: 0;
  622. position: relative;
  623. vertical-align: baseline;
  624. }
  625. .cm-s-paper .editor-toolbar a.fa-header-1::after {
  626. content: "1";
  627. }
  628. .cm-s-paper .editor-toolbar a.fa-header-2::after {
  629. content: "2";
  630. }
  631. .cm-s-paper .editor-toolbar a.fa-header-3::after {
  632. content: "3";
  633. }
  634. .cm-s-paper .editor-toolbar a.fa-header-bigger::after {
  635. content: "▲";
  636. }
  637. .cm-s-paper .editor-toolbar a.fa-header-smaller::after {
  638. content: "▼";
  639. }
  640. .cm-s-paper .editor-toolbar i.separator {
  641. border-right: 1px solid #555;
  642. color: transparent;
  643. display: inline-block;
  644. margin: 0 7px;
  645. text-indent: -10px;
  646. width: 0;
  647. }
  648. .cm-s-paper .editor-toolbar:hover a {
  649. color: #aaa !important;
  650. }
  651. .cm-s-paper .editor-toolbar.fullscreen {
  652. background-color: #444;
  653. border: 0;
  654. box-sizing: border-box;
  655. height: 58px;
  656. left: 0;
  657. overflow-x: auto;
  658. overflow-y: hidden;
  659. padding-bottom: 14px;
  660. padding-top: 14px;
  661. position: fixed;
  662. top: 0;
  663. white-space: nowrap;
  664. width: 100%;
  665. z-index: 9;
  666. }
  667. .cm-s-paper .editor-toolbar.fullscreen::before,
  668. .cm-s-paper .editor-toolbar.fullscreen::after {
  669. height: 58px;
  670. left: 0;
  671. margin: 0;
  672. padding: 0;
  673. position: fixed;
  674. top: 0;
  675. width: 20px;
  676. }
  677. @media only screen and (max-width: 700px) {
  678. .cm-s-paper .editor-toolbar a.no-mobile {
  679. display: none;
  680. }
  681. }
  682. .cm-s-paper .editor-toolbar.disabled-for-preview a:not(.no-disable) {
  683. background-color: #444;
  684. border-color: transparent;
  685. pointer-events: none;
  686. text-shadow: inherit;
  687. }
  688. .cm-s-paper .editor-statusbar {
  689. color: #777;
  690. font-family: inherit;
  691. font-size: 80%;
  692. padding: 7px 14px;
  693. text-align: right;
  694. }
  695. .cm-s-paper .editor-statusbar span {
  696. display: inline-block;
  697. margin-left: 1em;
  698. }
  699. .cm-s-paper .editor-statusbar .lines::before {
  700. content: "lines: ";
  701. }
  702. .cm-s-paper .editor-statusbar .words::before {
  703. content: "words: ";
  704. }
  705. .cm-s-paper .editor-statusbar .characters::before {
  706. content: "characters: ";
  707. }