contents.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. /*
  2. Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  3. For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. body
  6. {
  7. /* Font */
  8. /* Emoji fonts are added to visualise them nicely in Internet Explorer. */
  9. font-family: sans-serif, Arial, Verdana, "Trebuchet MS", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  10. font-size: 12px;
  11. /* Text color */
  12. color: #333;
  13. /* Remove the background color to make it transparent. */
  14. background-color: #fff;
  15. margin: 10px !important;
  16. }
  17. p{
  18. margin: 0;
  19. line-height: 32px;
  20. }
  21. .cke_editable
  22. {
  23. font-size: 13px;
  24. line-height: 1.6;
  25. /* Fix for missing scrollbars with RTL texts. (#10488) */
  26. word-wrap: break-word;
  27. }
  28. a
  29. {
  30. color: #0782C1;
  31. }
  32. ol,ul,dl
  33. {
  34. /* IE7: reset rtl list margin. (#7334) */
  35. *margin-right: 0px;
  36. /* Preserved spaces for list items with text direction different than the list. (#6249,#8049)*/
  37. /*padding: 0 40px;*/
  38. margin-block-end: 0;
  39. margin-block-start: 0;
  40. padding-inline-start: 20px;
  41. }
  42. ol{
  43. margin-block-end: 0;
  44. margin-block-start: 0;
  45. }
  46. h1,h2,h3,h4,h5,h6
  47. {
  48. font-weight: normal;
  49. line-height: 1.2;
  50. }
  51. hr
  52. {
  53. border: 0px;
  54. border-top: 1px solid #ccc;
  55. }
  56. img.right
  57. {
  58. border: 1px solid #ccc;
  59. float: right;
  60. margin-left: 15px;
  61. padding: 5px;
  62. }
  63. img.left
  64. {
  65. border: 1px solid #ccc;
  66. float: left;
  67. margin-right: 15px;
  68. padding: 5px;
  69. }
  70. pre
  71. {
  72. white-space: pre-wrap; /* CSS 2.1 */
  73. word-wrap: break-word; /* IE7 */
  74. -moz-tab-size: 4;
  75. tab-size: 4;
  76. }
  77. .marker
  78. {
  79. background-color: Yellow;
  80. }
  81. span[lang]
  82. {
  83. font-style: italic;
  84. }
  85. figure
  86. {
  87. text-align: center;
  88. outline: solid 1px #ccc;
  89. background: rgba(0,0,0,0.05);
  90. padding: 10px;
  91. margin: 10px 20px;
  92. display: inline-block;
  93. }
  94. figure > figcaption
  95. {
  96. text-align: center;
  97. display: block; /* For IE8 */
  98. }
  99. a > img {
  100. padding: 1px;
  101. margin: 1px;
  102. border: none;
  103. outline: 1px solid #0782C1;
  104. }
  105. /* Widget Styles */
  106. .code-featured
  107. {
  108. border: 5px solid red;
  109. }
  110. .math-featured
  111. {
  112. padding: 20px;
  113. box-shadow: 0 0 2px rgba(200, 0, 0, 1);
  114. background-color: rgba(255, 0, 0, 0.05);
  115. margin: 10px;
  116. }
  117. .image-clean
  118. {
  119. border: 0;
  120. background: none;
  121. padding: 0;
  122. }
  123. .image-clean > figcaption
  124. {
  125. font-size: .9em;
  126. text-align: right;
  127. }
  128. .image-grayscale
  129. {
  130. background-color: white;
  131. color: #666;
  132. }
  133. .image-grayscale img, img.image-grayscale
  134. {
  135. filter: grayscale(100%);
  136. }
  137. .embed-240p
  138. {
  139. max-width: 426px;
  140. max-height: 240px;
  141. margin:0 auto;
  142. }
  143. .embed-360p
  144. {
  145. max-width: 640px;
  146. max-height: 360px;
  147. margin:0 auto;
  148. }
  149. .embed-480p
  150. {
  151. max-width: 854px;
  152. max-height: 480px;
  153. margin:0 auto;
  154. }
  155. .embed-720p
  156. {
  157. max-width: 1280px;
  158. max-height: 720px;
  159. margin:0 auto;
  160. }
  161. .embed-1080p
  162. {
  163. max-width: 1920px;
  164. max-height: 1080px;
  165. margin:0 auto;
  166. }
  167. .cke_show_borders table.cke_show_border, .cke_show_borders table.cke_show_border > tbody > tr > td{
  168. border: none!important;
  169. }