content.css 1.1 KB

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