content.css 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* This file is bundled with the code from the following third party libraries */
  2. /**
  3. * http://prismjs.com/
  4. * @license MIT <https://opensource.org/licenses/MIT>
  5. * @author Lea Verou <https://lea.verou.me>
  6. * @see https://github.com/PrismJS/prism/blob/master/LICENSE
  7. *
  8. * Dracula Theme originally by Zeno Rocha [@zenorocha]
  9. * https://draculatheme.com/
  10. *
  11. * Ported for PrismJS by Albert Vallverdu [@byverdu]
  12. */
  13. body {
  14. background-color: #222f3e;
  15. color: #fff;
  16. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  17. line-height: 1.4;
  18. margin: 1rem;
  19. }
  20. a {
  21. color: #4099ff;
  22. }
  23. table {
  24. border-collapse: collapse;
  25. }
  26. /* Apply a default padding if legacy cellpadding attribute is missing */
  27. table:not([cellpadding]) th,
  28. table:not([cellpadding]) td {
  29. padding: 0.4rem;
  30. }
  31. /* Set default table styles if a table has a positive border attribute
  32. and no inline css */
  33. table[border]:not([border="0"]):not([style*="border-width"]) th,
  34. table[border]:not([border="0"]):not([style*="border-width"]) td {
  35. border-width: 1px;
  36. }
  37. /* Set default table styles if a table has a positive border attribute
  38. and no inline css */
  39. table[border]:not([border="0"]):not([style*="border-style"]) th,
  40. table[border]:not([border="0"]):not([style*="border-style"]) td {
  41. border-style: solid;
  42. }
  43. /* Set default table styles if a table has a positive border attribute
  44. and no inline css */
  45. table[border]:not([border="0"]):not([style*="border-color"]) th,
  46. table[border]:not([border="0"]):not([style*="border-color"]) td {
  47. border-color: #6d737b;
  48. }
  49. figure {
  50. display: table;
  51. margin: 1rem auto;
  52. }
  53. figure figcaption {
  54. color: #8a8f97;
  55. display: block;
  56. margin-top: 0.25rem;
  57. text-align: center;
  58. }
  59. hr {
  60. border-color: #6d737b;
  61. border-style: solid;
  62. border-width: 1px 0 0 0;
  63. }
  64. code {
  65. background-color: #6d737b;
  66. border-radius: 3px;
  67. padding: 0.1rem 0.2rem;
  68. }
  69. .mce-content-body:not([dir=rtl]) blockquote {
  70. border-left: 2px solid #6d737b;
  71. margin-left: 1.5rem;
  72. padding-left: 1rem;
  73. }
  74. .mce-content-body[dir=rtl] blockquote {
  75. border-right: 2px solid #6d737b;
  76. margin-right: 1.5rem;
  77. padding-right: 1rem;
  78. }