content.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /**
  2. * Copyright (c) Tiny Technologies, Inc. All rights reserved.
  3. * Licensed under the LGPL or a commercial license.
  4. * For LGPL see License.txt in the project root for license information.
  5. * For commercial licenses see https://www.tiny.cloud/
  6. */
  7. body {
  8. background-color: #2f3742;
  9. color: #dfe0e4;
  10. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  11. line-height: 1.4;
  12. margin: 1rem;
  13. }
  14. a {
  15. color: #4099ff;
  16. }
  17. table {
  18. border-collapse: collapse;
  19. }
  20. table th,
  21. table td {
  22. border: 1px solid #6d737b;
  23. padding: 0.4rem;
  24. }
  25. figure {
  26. display: table;
  27. margin: 1rem auto;
  28. }
  29. figure figcaption {
  30. color: #8a8f97;
  31. display: block;
  32. margin-top: 0.25rem;
  33. text-align: center;
  34. }
  35. hr {
  36. border-color: #6d737b;
  37. border-style: solid;
  38. border-width: 1px 0 0 0;
  39. }
  40. code {
  41. background-color: #6d737b;
  42. border-radius: 3px;
  43. padding: 0.1rem 0.2rem;
  44. }
  45. /* Make text in selected cells in tables dark and readable */
  46. td[data-mce-selected],
  47. th[data-mce-selected] {
  48. color: #333;
  49. }
  50. .mce-content-body:not([dir=rtl]) blockquote {
  51. border-left: 2px solid #6d737b;
  52. margin-left: 1.5rem;
  53. padding-left: 1rem;
  54. }
  55. .mce-content-body[dir=rtl] blockquote {
  56. border-right: 2px solid #6d737b;
  57. margin-right: 1.5rem;
  58. padding-right: 1rem;
  59. }