Built motion from commit 67e5df37.|2.0.62
[motion2.git] / public / assets / plugins / ckeditor / contents.css
1 /*
2 Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 For licensing, see LICENSE.md or http://ckeditor.com/license
4 */
5
6 body {
7     /* Font */
8     font-family: sans-serif, Arial, Verdana, "Trebuchet MS";
9     font-size: 12px;
10     /* Text color */
11     color: #333;
12     /* Remove the background color to make it transparent */
13     background-color: #fff;
14     margin: 20px;
15 }
16
17 .cke_editable {
18     font-size: 13px;
19     line-height: 1.6;
20     /* Fix for missing scrollbars with RTL texts. (#10488) */
21     word-wrap: break-word;
22 }
23
24 blockquote {
25     font-style: italic;
26     font-family: Georgia, Times, "Times New Roman", serif;
27     padding: 2px 0;
28     border-style: solid;
29     border-color: #ccc;
30     border-width: 0;
31 }
32
33 .cke_contents_ltr blockquote {
34     padding-left: 20px;
35     padding-right: 8px;
36     border-left-width: 5px;
37 }
38
39 .cke_contents_rtl blockquote {
40     padding-left: 8px;
41     padding-right: 20px;
42     border-right-width: 5px;
43 }
44
45 a {
46     color: #0782C1;
47 }
48
49 ol,
50 ul,
51 dl {
52     /* IE7: reset rtl list margin. (#7334) */
53     *margin-right: 0px;
54     /* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/
55     padding: 0 40px;
56 }
57
58 h1,
59 h2,
60 h3,
61 h4,
62 h5,
63 h6 {
64     font-weight: normal;
65     line-height: 1.2;
66 }
67
68 hr {
69     border: 0px;
70     border-top: 1px solid #ccc;
71 }
72
73 img.right {
74     border: 1px solid #ccc;
75     float: right;
76     margin-left: 15px;
77     padding: 5px;
78 }
79
80 img.left {
81     border: 1px solid #ccc;
82     float: left;
83     margin-right: 15px;
84     padding: 5px;
85 }
86
87 pre {
88     white-space: pre-wrap;
89     /* CSS 2.1 */
90     word-wrap: break-word;
91     /* IE7 */
92     -moz-tab-size: 4;
93     tab-size: 4;
94 }
95
96 .marker {
97     background-color: Yellow;
98 }
99
100 span[lang] {
101     font-style: italic;
102 }
103
104 figure {
105     text-align: center;
106     border: solid 1px #ccc;
107     border-radius: 2px;
108     background: rgba(0, 0, 0, 0.05);
109     padding: 10px;
110     margin: 10px 20px;
111     display: inline-block;
112 }
113
114 figure>figcaption {
115     text-align: center;
116     display: block;
117     /* For IE8 */
118 }
119
120 a>img {
121     padding: 1px;
122     margin: 1px;
123     border: none;
124     outline: 1px solid #0782C1;
125 }
126
127
128 /* Widget Styles */
129
130 .code-featured {
131     border: 5px solid red;
132 }
133
134 .math-featured {
135     padding: 20px;
136     box-shadow: 0 0 2px rgba(200, 0, 0, 1);
137     background-color: rgba(255, 0, 0, 0.05);
138     margin: 10px;
139 }
140
141 .image-clean {
142     border: 0;
143     background: none;
144     padding: 0;
145 }
146
147 .image-clean>figcaption {
148     font-size: .9em;
149     text-align: right;
150 }
151
152 .image-grayscale {
153     background-color: white;
154     color: #666;
155 }
156
157 .image-grayscale img,
158 img.image-grayscale {
159     filter: grayscale(100%);
160 }
161
162 .embed-240p {
163     max-width: 426px;
164     max-height: 240px;
165     margin: 0 auto;
166 }
167
168 .embed-360p {
169     max-width: 640px;
170     max-height: 360px;
171     margin: 0 auto;
172 }
173
174 .embed-480p {
175     max-width: 854px;
176     max-height: 480px;
177     margin: 0 auto;
178 }
179
180 .embed-720p {
181     max-width: 1280px;
182     max-height: 720px;
183     margin: 0 auto;
184 }
185
186 .embed-1080p {
187     max-width: 1920px;
188     max-height: 1080px;
189     margin: 0 auto;
190 }