document.css 695 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. Stylesheet for HTML documents created with CKEditor.
  3. This stylesheet must import editor_content.css file
  4. */
  5. @import url(./editor_content.css);
  6. body {
  7. color: #666;
  8. font-family: 'Open Sans', sans-serif;
  9. line-height: 30px;
  10. padding: 1em;
  11. }
  12. blockquote {
  13. background: #f9f9f9;
  14. border-left: 8px solid #ccc;
  15. display: inline-block;
  16. font: 14px/20px italic Times, serif;
  17. margin: 1.5em 10px;
  18. padding: 0.5em 10px;
  19. quotes: "\201C" "\201D" "\2018" "\2019";
  20. }
  21. blockquote:before {
  22. color: #ccc;
  23. content: open-quote;
  24. font-size: 4em;
  25. line-height: 0.1em;
  26. margin-right: 0.25em;
  27. vertical-align: -0.4em;
  28. }
  29. blockquote p {
  30. display: inline;
  31. }