content.css 2.0 KB

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