Ticket #13157: contents2.css

File contents2.css, 1.9 KB (added by Jakub Ś, 9 years ago)
Line 
1/*
2Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6body
7{
8        /* Font */
9        font-family: sans-serif, Arial, Verdana, "Trebuchet MS";
10        font-size: 12px;
11
12        /* Text color */
13        color: #333;
14
15        /* Remove the background color to make it transparent */
16        background-color: #fff;
17
18        margin: 20px;
19}
20
21.cke_editable
22{
23        font-size: 13px;
24        line-height: 1.6;
25}
26
27blockquote
28{
29        font-style: italic;
30        font-family: Georgia, Times, "Times New Roman", serif;
31        padding: 2px 0;
32        border-style: solid;
33        border-color: #ccc;
34        border-width: 0;
35}
36
37.cke_contents_ltr blockquote
38{
39        padding-left: 20px;
40        padding-right: 8px;
41        border-left-width: 5px;
42}
43
44.cke_contents_rtl blockquote
45{
46        padding-left: 8px;
47        padding-right: 20px;
48        border-right-width: 5px;
49}
50
51a
52{
53        color: #0782C1;
54}
55
56ol,ul,dl
57{
58        /* IE7: reset rtl list margin. (#7334) */
59        *margin-right: 0px;
60        /* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/
61        padding: 0 40px;
62}
63
64h1,h2,h3,h4,h5,h6
65{
66        font-weight: normal;
67        line-height: 1.2;
68}
69
70hr
71{
72        border: 0px;
73        border-top: 1px solid #ccc;
74}
75
76img.right
77{
78        border: 1px solid #ccc;
79        float: right;
80        margin-left: 15px;
81        padding: 5px;
82}
83
84img.left
85{
86        border: 1px solid #ccc;
87        float: left;
88        margin-right: 15px;
89        padding: 5px;
90}
91
92pre
93{
94        white-space: pre-wrap; /* CSS 2.1 */
95        word-wrap: break-word; /* IE7 */
96}
97
98.marker
99{
100        background-color: Yellow;
101}
102
103span[lang]
104{
105   font-style: italic;
106}
107
108figure
109{
110        text-align: center;
111        border: solid 1px #ccc;
112        border-radius: 2px;
113        background: rgba(0,0,0,0.05);
114        padding: 10px;
115        margin: 10px 20px;
116        display: block; /* For IE8 */
117}
118
119figure figcaption
120{
121        text-align: center;
122        display: block; /* For IE8 */
123}
124
125.text-editor-image-left {
126    float: left; margin-right: 10px;
127}
128       
129.text-editor-image-right {
130    float: right;
131    margin-left: 10px;
132}
133
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy