diff options
Diffstat (limited to 'sources/contents.css')
-rw-r--r-- | sources/contents.css | 75 |
1 files changed, 74 insertions, 1 deletions
diff --git a/sources/contents.css b/sources/contents.css index bef3ebc..8571059 100644 --- a/sources/contents.css +++ b/sources/contents.css | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -133,3 +133,76 @@ a > img { | |||
133 | border: none; | 133 | border: none; |
134 | outline: 1px solid #0782C1; | 134 | outline: 1px solid #0782C1; |
135 | } | 135 | } |
136 | |||
137 | /* Widget Styles */ | ||
138 | .code-featured | ||
139 | { | ||
140 | border: 5px solid red; | ||
141 | } | ||
142 | |||
143 | .math-featured | ||
144 | { | ||
145 | padding: 20px; | ||
146 | box-shadow: 0 0 2px rgba(200, 0, 0, 1); | ||
147 | background-color: rgba(255, 0, 0, 0.05); | ||
148 | margin: 10px; | ||
149 | } | ||
150 | |||
151 | .image-clean | ||
152 | { | ||
153 | border: 0; | ||
154 | background: none; | ||
155 | padding: 0; | ||
156 | } | ||
157 | |||
158 | .image-clean > figcaption | ||
159 | { | ||
160 | font-size: .9em; | ||
161 | text-align: right; | ||
162 | } | ||
163 | |||
164 | .image-grayscale | ||
165 | { | ||
166 | background-color: white; | ||
167 | color: #666; | ||
168 | } | ||
169 | |||
170 | .image-grayscale img, img.image-grayscale | ||
171 | { | ||
172 | filter: grayscale(100%); | ||
173 | } | ||
174 | |||
175 | .embed-240p | ||
176 | { | ||
177 | max-width: 426px; | ||
178 | max-height: 240px; | ||
179 | margin:0 auto; | ||
180 | } | ||
181 | |||
182 | .embed-360p | ||
183 | { | ||
184 | max-width: 640px; | ||
185 | max-height: 360px; | ||
186 | margin:0 auto; | ||
187 | } | ||
188 | |||
189 | .embed-480p | ||
190 | { | ||
191 | max-width: 854px; | ||
192 | max-height: 480px; | ||
193 | margin:0 auto; | ||
194 | } | ||
195 | |||
196 | .embed-720p | ||
197 | { | ||
198 | max-width: 1280px; | ||
199 | max-height: 720px; | ||
200 | margin:0 auto; | ||
201 | } | ||
202 | |||
203 | .embed-1080p | ||
204 | { | ||
205 | max-width: 1920px; | ||
206 | max-height: 1080px; | ||
207 | margin:0 auto; | ||
208 | } | ||