ckeditor/contents.css
changeset 0 44d330dccc59
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ckeditor/contents.css	Thu Dec 15 18:10:20 2016 +0300
     1.3 @@ -0,0 +1,208 @@
     1.4 +/*
     1.5 +Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
     1.6 +For licensing, see LICENSE.md or http://ckeditor.com/license
     1.7 +*/
     1.8 +
     1.9 +body
    1.10 +{
    1.11 +	/* Font */
    1.12 +	font-family: sans-serif, Arial, Verdana, "Trebuchet MS";
    1.13 +	font-size: 12px;
    1.14 +
    1.15 +	/* Text color */
    1.16 +	color: #333;
    1.17 +
    1.18 +	/* Remove the background color to make it transparent */
    1.19 +	background-color: #fff;
    1.20 +
    1.21 +	margin: 20px;
    1.22 +}
    1.23 +
    1.24 +.cke_editable
    1.25 +{
    1.26 +	font-size: 13px;
    1.27 +	line-height: 1.6;
    1.28 +
    1.29 +	/* Fix for missing scrollbars with RTL texts. (#10488) */
    1.30 +	word-wrap: break-word;
    1.31 +}
    1.32 +
    1.33 +blockquote
    1.34 +{
    1.35 +	font-style: italic;
    1.36 +	font-family: Georgia, Times, "Times New Roman", serif;
    1.37 +	padding: 2px 0;
    1.38 +	border-style: solid;
    1.39 +	border-color: #ccc;
    1.40 +	border-width: 0;
    1.41 +}
    1.42 +
    1.43 +.cke_contents_ltr blockquote
    1.44 +{
    1.45 +	padding-left: 20px;
    1.46 +	padding-right: 8px;
    1.47 +	border-left-width: 5px;
    1.48 +}
    1.49 +
    1.50 +.cke_contents_rtl blockquote
    1.51 +{
    1.52 +	padding-left: 8px;
    1.53 +	padding-right: 20px;
    1.54 +	border-right-width: 5px;
    1.55 +}
    1.56 +
    1.57 +a
    1.58 +{
    1.59 +	color: #0782C1;
    1.60 +}
    1.61 +
    1.62 +ol,ul,dl
    1.63 +{
    1.64 +	/* IE7: reset rtl list margin. (#7334) */
    1.65 +	*margin-right: 0px;
    1.66 +	/* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/
    1.67 +	padding: 0 40px;
    1.68 +}
    1.69 +
    1.70 +h1,h2,h3,h4,h5,h6
    1.71 +{
    1.72 +	font-weight: normal;
    1.73 +	line-height: 1.2;
    1.74 +}
    1.75 +
    1.76 +hr
    1.77 +{
    1.78 +	border: 0px;
    1.79 +	border-top: 1px solid #ccc;
    1.80 +}
    1.81 +
    1.82 +img.right
    1.83 +{
    1.84 +	border: 1px solid #ccc;
    1.85 +	float: right;
    1.86 +	margin-left: 15px;
    1.87 +	padding: 5px;
    1.88 +}
    1.89 +
    1.90 +img.left
    1.91 +{
    1.92 +	border: 1px solid #ccc;
    1.93 +	float: left;
    1.94 +	margin-right: 15px;
    1.95 +	padding: 5px;
    1.96 +}
    1.97 +
    1.98 +pre
    1.99 +{
   1.100 +	white-space: pre-wrap; /* CSS 2.1 */
   1.101 +	word-wrap: break-word; /* IE7 */
   1.102 +	-moz-tab-size: 4;
   1.103 +	tab-size: 4;
   1.104 +}
   1.105 +
   1.106 +.marker
   1.107 +{
   1.108 +	background-color: Yellow;
   1.109 +}
   1.110 +
   1.111 +span[lang]
   1.112 +{
   1.113 +	font-style: italic;
   1.114 +}
   1.115 +
   1.116 +figure
   1.117 +{
   1.118 +	text-align: center;
   1.119 +	border: solid 1px #ccc;
   1.120 +	border-radius: 2px;
   1.121 +	background: rgba(0,0,0,0.05);
   1.122 +	padding: 10px;
   1.123 +	margin: 10px 20px;
   1.124 +	display: inline-block;
   1.125 +}
   1.126 +
   1.127 +figure > figcaption
   1.128 +{
   1.129 +	text-align: center;
   1.130 +	display: block; /* For IE8 */
   1.131 +}
   1.132 +
   1.133 +a > img {
   1.134 +	padding: 1px;
   1.135 +	margin: 1px;
   1.136 +	border: none;
   1.137 +	outline: 1px solid #0782C1;
   1.138 +}
   1.139 +
   1.140 +/* Widget Styles */
   1.141 +.code-featured
   1.142 +{
   1.143 +	border: 5px solid red;
   1.144 +}
   1.145 +
   1.146 +.math-featured
   1.147 +{
   1.148 +	padding: 20px;
   1.149 +	box-shadow: 0 0 2px rgba(200, 0, 0, 1);
   1.150 +	background-color: rgba(255, 0, 0, 0.05);
   1.151 +	margin: 10px;
   1.152 +}
   1.153 +
   1.154 +.image-clean
   1.155 +{
   1.156 +	border: 0;
   1.157 +	background: none;
   1.158 +	padding: 0;
   1.159 +}
   1.160 +
   1.161 +.image-clean > figcaption
   1.162 +{
   1.163 +	font-size: .9em;
   1.164 +	text-align: right;
   1.165 +}
   1.166 +
   1.167 +.image-grayscale
   1.168 +{
   1.169 +	background-color: white;
   1.170 +	color: #666;
   1.171 +}
   1.172 +
   1.173 +.image-grayscale img, img.image-grayscale
   1.174 +{
   1.175 +	filter: grayscale(100%);
   1.176 +}
   1.177 +
   1.178 +.embed-240p
   1.179 +{
   1.180 +	max-width: 426px;
   1.181 +	max-height: 240px;
   1.182 +	margin:0 auto;
   1.183 +}
   1.184 +
   1.185 +.embed-360p
   1.186 +{
   1.187 +	max-width: 640px;
   1.188 +	max-height: 360px;
   1.189 +	margin:0 auto;
   1.190 +}
   1.191 +
   1.192 +.embed-480p
   1.193 +{
   1.194 +	max-width: 854px;
   1.195 +	max-height: 480px;
   1.196 +	margin:0 auto;
   1.197 +}
   1.198 +
   1.199 +.embed-720p
   1.200 +{
   1.201 +	max-width: 1280px;
   1.202 +	max-height: 720px;
   1.203 +	margin:0 auto;
   1.204 +}
   1.205 +
   1.206 +.embed-1080p
   1.207 +{
   1.208 +	max-width: 1920px;
   1.209 +	max-height: 1080px;
   1.210 +	margin:0 auto;
   1.211 +}