content.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. html {
  8. height: 100%;
  9. }
  10. body {
  11. background-color: #2f3742;
  12. color: #dfe0e4;
  13. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  14. height: calc(100% - 2rem);
  15. line-height: 1.4;
  16. margin: 1rem;
  17. }
  18. a {
  19. color: #4099ff;
  20. }
  21. table {
  22. border-collapse: collapse;
  23. }
  24. table th,
  25. table td {
  26. border: 1px solid #6d737b;
  27. padding: 0.4rem;
  28. }
  29. figure {
  30. display: table;
  31. margin: 1rem auto;
  32. }
  33. figure figcaption {
  34. color: #8a8f97;
  35. display: block;
  36. margin-top: 0.25rem;
  37. text-align: center;
  38. }
  39. hr {
  40. border-color: #6d737b;
  41. border-style: solid;
  42. border-width: 1px 0 0 0;
  43. }
  44. code {
  45. background-color: #6d737b;
  46. border-radius: 3px;
  47. padding: 0.1rem 0.2rem;
  48. }
  49. /* Make text in selected cells in tables dark and readable */
  50. td[data-mce-selected],
  51. th[data-mce-selected] {
  52. color: #333;
  53. }
  54. .mce-content-body:not([dir=rtl]) blockquote {
  55. border-left: 2px solid #6d737b;
  56. margin-left: 1.5rem;
  57. padding-left: 1rem;
  58. }
  59. .mce-content-body[dir=rtl] blockquote {
  60. border-right: 2px solid #6d737b;
  61. margin-right: 1.5rem;
  62. padding-right: 1rem;
  63. }