content.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 auto;
  11. max-width: 900px;
  12. }
  13. table {
  14. border-collapse: collapse;
  15. }
  16. table th,
  17. table td {
  18. border: 1px solid #ccc;
  19. padding: 0.4rem;
  20. }
  21. figure {
  22. display: table;
  23. margin: 1rem auto;
  24. }
  25. figure figcaption {
  26. color: #999;
  27. display: block;
  28. margin-top: 0.25rem;
  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. background-color: #e8e8e8;
  38. border-radius: 3px;
  39. padding: 0.1rem 0.2rem;
  40. }
  41. .mce-content-body:not([dir=rtl]) blockquote {
  42. border-left: 2px solid #ccc;
  43. margin-left: 1.5rem;
  44. padding-left: 1rem;
  45. }
  46. .mce-content-body[dir=rtl] blockquote {
  47. border-right: 2px solid #ccc;
  48. margin-right: 1.5rem;
  49. padding-right: 1rem;
  50. }