content.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  9. line-height: 1.4;
  10. margin: 1rem;
  11. }
  12. table {
  13. border-collapse: collapse;
  14. }
  15. table th,
  16. table td {
  17. border: 1px solid #ccc;
  18. padding: 0.4rem;
  19. }
  20. figure {
  21. display: table;
  22. margin: 1rem auto;
  23. }
  24. figure figcaption {
  25. color: #999;
  26. display: block;
  27. margin-top: 0.25rem;
  28. text-align: center;
  29. }
  30. hr {
  31. border-color: #ccc;
  32. border-style: solid;
  33. border-width: 1px 0 0 0;
  34. }
  35. code {
  36. background-color: #e8e8e8;
  37. border-radius: 3px;
  38. padding: 0.1rem 0.2rem;
  39. }
  40. .mce-content-body:not([dir=rtl]) blockquote {
  41. border-left: 2px solid #ccc;
  42. margin-left: 1.5rem;
  43. padding-left: 1rem;
  44. }
  45. .mce-content-body[dir=rtl] blockquote {
  46. border-right: 2px solid #ccc;
  47. margin-right: 1.5rem;
  48. padding-right: 1rem;
  49. }