output_xhtml.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. /*
  2. * Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.html or http://ckeditor.com/license
  4. *
  5. * Styles used by the XHTML 1.1 sample page (xhtml.html).
  6. */
  7. /**
  8. * Basic definitions for the editing area.
  9. */
  10. body
  11. {
  12. font-family: Arial, Verdana, sans-serif;
  13. font-size: 80%;
  14. color: #000000;
  15. background-color: #ffffff;
  16. padding: 5px;
  17. margin: 0px;
  18. }
  19. /**
  20. * Core styles.
  21. */
  22. .Bold
  23. {
  24. font-weight: bold;
  25. }
  26. .Italic
  27. {
  28. font-style: italic;
  29. }
  30. .Underline
  31. {
  32. text-decoration: underline;
  33. }
  34. .StrikeThrough
  35. {
  36. text-decoration: line-through;
  37. }
  38. .Subscript
  39. {
  40. vertical-align: sub;
  41. font-size: smaller;
  42. }
  43. .Superscript
  44. {
  45. vertical-align: super;
  46. font-size: smaller;
  47. }
  48. /**
  49. * Font faces.
  50. */
  51. .FontComic
  52. {
  53. font-family: 'Comic Sans MS';
  54. }
  55. .FontCourier
  56. {
  57. font-family: 'Courier New';
  58. }
  59. .FontTimes
  60. {
  61. font-family: 'Times New Roman';
  62. }
  63. /**
  64. * Font sizes.
  65. */
  66. .FontSmaller
  67. {
  68. font-size: smaller;
  69. }
  70. .FontLarger
  71. {
  72. font-size: larger;
  73. }
  74. .FontSmall
  75. {
  76. font-size: 8pt;
  77. }
  78. .FontBig
  79. {
  80. font-size: 14pt;
  81. }
  82. .FontDouble
  83. {
  84. font-size: 200%;
  85. }
  86. /**
  87. * Font colors.
  88. */
  89. .FontColor1
  90. {
  91. color: #ff9900;
  92. }
  93. .FontColor2
  94. {
  95. color: #0066cc;
  96. }
  97. .FontColor3
  98. {
  99. color: #ff0000;
  100. }
  101. .FontColor1BG
  102. {
  103. background-color: #ff9900;
  104. }
  105. .FontColor2BG
  106. {
  107. background-color: #0066cc;
  108. }
  109. .FontColor3BG
  110. {
  111. background-color: #ff0000;
  112. }
  113. /**
  114. * Indentation.
  115. */
  116. .Indent1
  117. {
  118. margin-left: 40px;
  119. }
  120. .Indent2
  121. {
  122. margin-left: 80px;
  123. }
  124. .Indent3
  125. {
  126. margin-left: 120px;
  127. }
  128. /**
  129. * Alignment.
  130. */
  131. .JustifyLeft
  132. {
  133. text-align: left;
  134. }
  135. .JustifyRight
  136. {
  137. text-align: right;
  138. }
  139. .JustifyCenter
  140. {
  141. text-align: center;
  142. }
  143. .JustifyFull
  144. {
  145. text-align: justify;
  146. }
  147. /**
  148. * Other.
  149. */
  150. code
  151. {
  152. font-family: courier, monospace;
  153. background-color: #eeeeee;
  154. padding-left: 1px;
  155. padding-right: 1px;
  156. border: #c0c0c0 1px solid;
  157. }
  158. kbd
  159. {
  160. padding: 0px 1px 0px 1px;
  161. border-width: 1px 2px 2px 1px;
  162. border-style: solid;
  163. }
  164. blockquote
  165. {
  166. color: #808080;
  167. }