document.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. @font-face {
  7. font-family: 'Open Sans';
  8. font-style: normal;
  9. font-weight: 300;
  10. src: local('Open Sans Light'), local('OpenSans-Light'), url(themes/chamilo/fonts/OpenSans-Light.woff2) format('woff2'), url(themes/chamilo/fonts/OpenSans-Light.woff) format('woff');
  11. }
  12. @font-face {
  13. font-family: 'Open Sans';
  14. font-style: normal;
  15. font-weight: 400;
  16. src: local('Open Sans'), local('OpenSans'), url(themes/chamilo/fonts/OpenSans.woff2) format('woff2'), url(themes/chamilo/fonts/OpenSans.woff) format('woff');
  17. }
  18. @font-face {
  19. font-family: 'Open Sans';
  20. font-style: normal;
  21. font-weight: 600;
  22. src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(themes/chamilo/fonts/OpenSans-Semibold.woff2) format('woff2'), url(themes/chamilo/fonts/OpenSans-Semibold.woff) format('woff');
  23. }
  24. @font-face {
  25. font-family: 'Open Sans';
  26. font-style: normal;
  27. font-weight: 700;
  28. src: local('Open Sans Bold'), local('OpenSans-Bold'), url(themes/chamilo/fonts/OpenSans-Bold.woff2) format('woff2'), url(themes/chamilo/fonts/OpenSans-Bold.woff) format('woff');
  29. }
  30. body {
  31. color: #666;
  32. font-family: 'Open Sans', sans-serif;
  33. line-height: 30px;
  34. padding: 1em;
  35. }
  36. blockquote {
  37. background: #f9f9f9;
  38. border-left: 8px solid #ccc;
  39. display: inline-block;
  40. font: 14px/20px italic Times, serif;
  41. margin: 1.5em 10px;
  42. padding: 0.5em 10px;
  43. quotes: "\201C" "\201D" "\2018" "\2019";
  44. }
  45. blockquote:before {
  46. color: #ccc;
  47. content: open-quote;
  48. font-size: 4em;
  49. line-height: 0.1em;
  50. margin-right: 0.25em;
  51. vertical-align: -0.4em;
  52. }
  53. blockquote p {
  54. display: inline;
  55. }