editor.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. /*
  6. editor.css
  7. ============
  8. This is he heart of the skin system. This is the file loaded by the editor to
  9. style all elements inside its main interface.
  10. To make it easier to maintain, instead of including all styles here, we import
  11. other files.
  12. */
  13. /* "Reset" styles, necessary to avoid the editor UI being broken by external CSS. */
  14. @import url("reset.css");
  15. /* Styles the main interface structure (holding box). */
  16. @import url("mainui.css");
  17. /* Styles all "panels", which are the floating elements that appear when
  18. opening toolbar combos, menu buttons, context menus, etc. */
  19. @import url("panel.css");
  20. /* Styles the color panel displayed by the color buttons. */
  21. @import url("colorpanel.css");
  22. /* Styles to toolbar. */
  23. @import url("toolbar.css");
  24. /* Styles menus, which are lists of selectable items (context menu, menu button). */
  25. @import url("menu.css");
  26. /* Styles toolbar combos. */
  27. @import url("richcombo.css");
  28. /* Styles the elements path bar, available at the bottom of the editor UI.*/
  29. @import url("elementspath.css");
  30. /* Contains hard-coded presets for "configurable-like" options of the UI
  31. (e.g. display labels on specific buttons) */
  32. @import url("presets.css");
  33. /* Styles for notifications. */
  34. @import url("notification.css");
  35. /* Important!
  36. To avoid showing the editor UI while its styles are still not available, the
  37. editor creates it with visibility:hidden. Here, we restore the UI visibility. */
  38. .cke_chrome
  39. {
  40. visibility: inherit;
  41. }
  42. /* For accessibility purposes, several "voice labels" are present in the UI.
  43. These are usually <span> elements that show not be visible, but that are
  44. used by screen-readers to announce other elements. Here, we hide these
  45. <spans>, in fact. */
  46. .cke_voice_label
  47. {
  48. display: none;
  49. }
  50. legend.cke_voice_label
  51. {
  52. display: none;
  53. }
  54. .style1 {
  55. display: block;
  56. padding-left: 30px;
  57. font: normal 20px/1.3 "PT Serif", Georgia, Arial, sans-serif;
  58. font-weight: 600;
  59. color: #b14300;
  60. border-left: 3px solid #b14300;
  61. }
  62. .style5{
  63. display: block;
  64. border-left: 1px solid #e5e5e5;
  65. font-family: "PT Serif", Georgia, "Times New Roman", Times, serif;
  66. padding: 20px;
  67. border: 3px;
  68. border-right: 1px solid #e5e5e5;
  69. border-bottom: 1px solid #e5e5e5;
  70. background-color: #f2f1e7;
  71. border-top: 5px solid;
  72. }
  73. .style3 {
  74. font-size: 11px;
  75. color: #767676;
  76. border-top: 1px #e5e5e5 solid;
  77. display: block;
  78. font-style: normal;
  79. }
  80. .style4 {
  81. font-size: 11px;
  82. color: #767676;
  83. border-top: 1px #e5e5e5 solid;
  84. display: block;
  85. font-style: normal;
  86. }
  87. .rec {
  88. position:relative;
  89. height:auto;
  90. background: silver;
  91. margin: auto;
  92. padding:10px;
  93. display: block;
  94. }