ckeditor-iframe.css 440 B

123456789101112131415161718192021222324
  1. /**
  2. * CSS added to iframe-based instances only.
  3. */
  4. body {
  5. color: #333;
  6. background: #fff;
  7. font: normal 14px/1.8 'Ubuntu', sans-serif;
  8. margin: 8px;
  9. }
  10. @media screen and (max-width: 600px) {
  11. /* A font-size of 16px prevents iOS from zooming. */
  12. body {
  13. font-size: 16px;
  14. }
  15. }
  16. ol,
  17. ul,
  18. dl {
  19. /* Preserved spaces for list items with text direction other than the list.
  20. * (CKEditor issues #6249,#8049) */
  21. padding: 0 40px;
  22. }