simplemde-dark.css 16 KB

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