contents.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /*
  2. Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.md or http://ckeditor.com/license
  4. */
  5. body
  6. {
  7. /* Font */
  8. font-family: sans-serif, Arial, Verdana, "Trebuchet MS";
  9. font-size: 12px;
  10. /* Text color */
  11. color: #333;
  12. /* Remove the background color to make it transparent */
  13. background-color: #fff;
  14. margin: 20px;
  15. }
  16. .cke_editable
  17. {
  18. font-size: 13px;
  19. line-height: 1.6;
  20. /* Fix for missing scrollbars with RTL texts. (#10488) */
  21. word-wrap: break-word;
  22. }
  23. blockquote
  24. {
  25. font-style: italic;
  26. font-family: Georgia, Times, "Times New Roman", serif;
  27. padding: 2px 0;
  28. border-style: solid;
  29. border-color: #ccc;
  30. border-width: 0;
  31. }
  32. .cke_contents_ltr blockquote
  33. {
  34. padding-left: 20px;
  35. padding-right: 8px;
  36. border-left-width: 5px;
  37. }
  38. .cke_contents_rtl blockquote
  39. {
  40. padding-left: 8px;
  41. padding-right: 20px;
  42. border-right-width: 5px;
  43. }
  44. a
  45. {
  46. color: #0782C1;
  47. }
  48. ol,ul,dl
  49. {
  50. /* IE7: reset rtl list margin. (#7334) */
  51. *margin-right: 0px;
  52. /* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/
  53. padding: 0 40px;
  54. }
  55. /*
  56. h1,h2,h3,h4,h5,h6
  57. {
  58. font-weight: normal;
  59. line-height: 1.2;
  60. }
  61. */
  62. hr
  63. {
  64. border: 0px;
  65. border-top: 1px solid #ccc;
  66. }
  67. img.right
  68. {
  69. border: 1px solid #ccc;
  70. float: right;
  71. margin-left: 15px;
  72. padding: 5px;
  73. }
  74. img.left
  75. {
  76. border: 1px solid #ccc;
  77. float: left;
  78. margin-right: 15px;
  79. padding: 5px;
  80. }
  81. pre
  82. {
  83. white-space: pre-wrap; /* CSS 2.1 */
  84. word-wrap: break-word; /* IE7 */
  85. -moz-tab-size: 4;
  86. tab-size: 4;
  87. }
  88. .marker
  89. {
  90. background-color: Yellow;
  91. }
  92. span[lang]
  93. {
  94. font-style: italic;
  95. }
  96. figure
  97. {
  98. text-align: center;
  99. border: solid 1px #ccc;
  100. border-radius: 2px;
  101. background: rgba(0,0,0,0.05);
  102. padding: 10px;
  103. margin: 10px 20px;
  104. display: inline-block;
  105. }
  106. figure > figcaption
  107. {
  108. text-align: center;
  109. display: block; /* For IE8 */
  110. }
  111. a > img {
  112. padding: 1px;
  113. margin: 1px;
  114. border: none;
  115. outline: 1px solid #0782C1;
  116. }