ckeditor-iframe.css 462 B

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