123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /*
- Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
- For licensing, see LICENSE.md or http://ckeditor.com/license
- */
- /*
- editor.css
- ============
- This is he heart of the skin system. This is the file loaded by the editor to
- style all elements inside its main interface.
- To make it easier to maintain, instead of including all styles here, we import
- other files.
- */
- /* "Reset" styles, necessary to avoid the editor UI being broken by external CSS. */
- @import url("reset.css");
- /* Styles the main interface structure (holding box). */
- @import url("mainui.css");
- /* Styles all "panels", which are the floating elements that appear when
- opening toolbar combos, menu buttons, context menus, etc. */
- @import url("panel.css");
- /* Styles the color panel displayed by the color buttons. */
- @import url("colorpanel.css");
- /* Styles to toolbar. */
- @import url("toolbar.css");
- /* Styles menus, which are lists of selectable items (context menu, menu button). */
- @import url("menu.css");
- /* Styles toolbar combos. */
- @import url("richcombo.css");
- /* Styles the elements path bar, available at the bottom of the editor UI.*/
- @import url("elementspath.css");
- /* Contains hard-coded presets for "configurable-like" options of the UI
- (e.g. display labels on specific buttons) */
- @import url("presets.css");
- /* Styles for notifications. */
- @import url("notification.css");
- /* Important!
- To avoid showing the editor UI while its styles are still not available, the
- editor creates it with visibility:hidden. Here, we restore the UI visibility. */
- .cke_chrome
- {
- visibility: inherit;
- }
- /* For accessibility purposes, several "voice labels" are present in the UI.
- These are usually <span> elements that show not be visible, but that are
- used by screen-readers to announce other elements. Here, we hide these
- <spans>, in fact. */
- .cke_voice_label
- {
- display: none;
- }
- legend.cke_voice_label
- {
- display: none;
- }
- .style1 {
- display: block;
- padding-left: 30px;
- font: normal 20px/1.3 "PT Serif", Georgia, Arial, sans-serif;
- font-weight: 600;
- color: #b14300;
- border-left: 3px solid #b14300;
- }
- .style5{
- display: block;
- border-left: 1px solid #e5e5e5;
- font-family: "PT Serif", Georgia, "Times New Roman", Times, serif;
- padding: 20px;
- border: 3px;
- border-right: 1px solid #e5e5e5;
- border-bottom: 1px solid #e5e5e5;
- background-color: #f2f1e7;
- border-top: 5px solid;
- }
- .style3 {
- font-size: 11px;
- color: #767676;
- border-top: 1px #e5e5e5 solid;
- display: block;
- font-style: normal;
- }
- .style4 {
- font-size: 11px;
- color: #767676;
- border-top: 1px #e5e5e5 solid;
- display: block;
- font-style: normal;
- }
- .rec {
- position:relative;
- height:auto;
- background: silver;
- margin: auto;
- padding:10px;
- display: block;
- }
|