sample.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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. html, body, h1, h2, h3, h4, h5, h6, div, span, blockquote, p, address, form, fieldset, img, ul, ol, dl, dt, dd, li, hr, table, td, th, strong, em, sup, sub, dfn, ins, del, q, cite, var, samp, code, kbd, tt, pre {
  6. line-height: 1.5em;
  7. }
  8. body {
  9. padding:10px 30px;
  10. }
  11. input, textarea, select, option, optgroup, button, td, th {
  12. font-size: 100%;
  13. }
  14. pre,
  15. code,
  16. kbd,
  17. samp,
  18. tt{
  19. font-family: monospace,monospace;
  20. font-size: 1em;
  21. }
  22. h1.samples {
  23. color:#0782C1;
  24. font-size:200%;
  25. font-weight:normal;
  26. margin: 0;
  27. padding: 0;
  28. }
  29. h2.samples {
  30. color:#000000;
  31. font-size:130%;
  32. margin: 0;
  33. padding: 0;
  34. }
  35. p, blockquote, address, form, pre, dl, h1.samples, h2.samples {
  36. margin-bottom:15px;
  37. }
  38. ul.samples {
  39. margin-bottom:15px;
  40. }
  41. .clear {
  42. clear:both;
  43. }
  44. fieldset
  45. {
  46. margin: 0;
  47. padding: 10px;
  48. }
  49. body, input, textarea {
  50. color: #333333;
  51. font-family: Arial, Helvetica, sans-serif;
  52. }
  53. body {
  54. font-size: 75%;
  55. }
  56. a.samples {
  57. color:#189DE1;
  58. text-decoration:none;
  59. }
  60. a.samples:hover {
  61. text-decoration:underline;
  62. }
  63. form
  64. {
  65. margin: 0;
  66. padding: 0;
  67. }
  68. pre.samples
  69. {
  70. background-color: #F7F7F7;
  71. border: 1px solid #D7D7D7;
  72. overflow: auto;
  73. padding: 0.25em;
  74. }
  75. #alerts
  76. {
  77. color: Red;
  78. }
  79. #footer hr
  80. {
  81. margin: 10px 0 15px 0;
  82. height: 1px;
  83. border: solid 1px gray;
  84. border-bottom: none;
  85. }
  86. #footer p
  87. {
  88. margin: 0 10px 10px 10px;
  89. float: left;
  90. }
  91. #footer #copy
  92. {
  93. float: right;
  94. }
  95. #outputSample
  96. {
  97. width: 100%;
  98. table-layout: fixed;
  99. }
  100. #outputSample thead th
  101. {
  102. color: #dddddd;
  103. background-color: #999999;
  104. padding: 4px;
  105. white-space: nowrap;
  106. }
  107. #outputSample tbody th
  108. {
  109. vertical-align: top;
  110. text-align: left;
  111. }
  112. #outputSample pre
  113. {
  114. margin: 0;
  115. padding: 0;
  116. white-space: pre; /* CSS2 */
  117. white-space: -moz-pre-wrap; /* Mozilla*/
  118. white-space: -o-pre-wrap; /* Opera 7 */
  119. white-space: pre-wrap; /* CSS 2.1 */
  120. white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  121. word-wrap: break-word; /* IE */
  122. }
  123. .description {
  124. border: 1px dotted #B7B7B7;
  125. margin-bottom: 10px;
  126. padding: 10px 10px 0;
  127. }
  128. label {
  129. display: block;
  130. margin-bottom:6px;
  131. }
  132. .cke_dialog label
  133. {
  134. display: inline;
  135. margin-bottom: auto;
  136. }