content.css 1.1 KB

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