Le repo des sources pour le site web des JM2L
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 

135 lignes
2.0 KiB

  1. /*
  2. Copyright (c) 2003-2015, 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. }
  21. blockquote
  22. {
  23. font-style: italic;
  24. font-family: Georgia, Times, "Times New Roman", serif;
  25. padding: 2px 0;
  26. border-style: solid;
  27. border-color: #ccc;
  28. border-width: 0;
  29. }
  30. .cke_contents_ltr blockquote
  31. {
  32. padding-left: 20px;
  33. padding-right: 8px;
  34. border-left-width: 5px;
  35. }
  36. .cke_contents_rtl blockquote
  37. {
  38. padding-left: 8px;
  39. padding-right: 20px;
  40. border-right-width: 5px;
  41. }
  42. a
  43. {
  44. color: #0782C1;
  45. }
  46. ol,ul,dl
  47. {
  48. /* IE7: reset rtl list margin. (#7334) */
  49. *margin-right: 0px;
  50. /* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/
  51. padding: 0 40px;
  52. }
  53. h1,h2,h3,h4,h5,h6
  54. {
  55. font-weight: normal;
  56. line-height: 1.2;
  57. }
  58. hr
  59. {
  60. border: 0px;
  61. border-top: 1px solid #ccc;
  62. }
  63. img.right
  64. {
  65. border: 1px solid #ccc;
  66. float: right;
  67. margin-left: 15px;
  68. padding: 5px;
  69. }
  70. img.left
  71. {
  72. border: 1px solid #ccc;
  73. float: left;
  74. margin-right: 15px;
  75. padding: 5px;
  76. }
  77. pre
  78. {
  79. white-space: pre-wrap; /* CSS 2.1 */
  80. word-wrap: break-word; /* IE7 */
  81. -moz-tab-size: 4;
  82. -o-tab-size: 4;
  83. -webkit-tab-size: 4;
  84. tab-size: 4;
  85. }
  86. .marker
  87. {
  88. background-color: Yellow;
  89. }
  90. span[lang]
  91. {
  92. font-style: italic;
  93. }
  94. figure
  95. {
  96. text-align: center;
  97. border: solid 1px #ccc;
  98. border-radius: 2px;
  99. background: rgba(0,0,0,0.05);
  100. padding: 10px;
  101. margin: 10px 20px;
  102. display: inline-block;
  103. }
  104. figure > figcaption
  105. {
  106. text-align: center;
  107. display: block; /* For IE8 */
  108. }
  109. a > img {
  110. padding: 1px;
  111. margin: 1px;
  112. border: none;
  113. outline: 1px solid #0782C1;
  114. }