ckeditor/samples/old/assets/outputxhtml/outputxhtml.css
changeset 0 44d330dccc59
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ckeditor/samples/old/assets/outputxhtml/outputxhtml.css	Thu Dec 15 18:10:20 2016 +0300
     1.3 @@ -0,0 +1,204 @@
     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 + * Styles used by the XHTML 1.1 sample page (xhtml.html).
     1.9 + */
    1.10 +
    1.11 +/**
    1.12 + * Basic definitions for the editing area.
    1.13 + */
    1.14 +body
    1.15 +{
    1.16 +	font-family: Arial, Verdana, sans-serif;
    1.17 +	font-size: 80%;
    1.18 +	color: #000000;
    1.19 +	background-color: #ffffff;
    1.20 +	padding: 5px;
    1.21 +	margin: 0px;
    1.22 +}
    1.23 +
    1.24 +/**
    1.25 + * Core styles.
    1.26 + */
    1.27 +
    1.28 +.Bold
    1.29 +{
    1.30 +	font-weight: bold;
    1.31 +}
    1.32 +
    1.33 +.Italic
    1.34 +{
    1.35 +	font-style: italic;
    1.36 +}
    1.37 +
    1.38 +.Underline
    1.39 +{
    1.40 +	text-decoration: underline;
    1.41 +}
    1.42 +
    1.43 +.StrikeThrough
    1.44 +{
    1.45 +	text-decoration: line-through;
    1.46 +}
    1.47 +
    1.48 +.Subscript
    1.49 +{
    1.50 +	vertical-align: sub;
    1.51 +	font-size: smaller;
    1.52 +}
    1.53 +
    1.54 +.Superscript
    1.55 +{
    1.56 +	vertical-align: super;
    1.57 +	font-size: smaller;
    1.58 +}
    1.59 +
    1.60 +/**
    1.61 + * Font faces.
    1.62 + */
    1.63 +
    1.64 +.FontComic
    1.65 +{
    1.66 +	font-family: 'Comic Sans MS';
    1.67 +}
    1.68 +
    1.69 +.FontCourier
    1.70 +{
    1.71 +	font-family: 'Courier New';
    1.72 +}
    1.73 +
    1.74 +.FontTimes
    1.75 +{
    1.76 +	font-family: 'Times New Roman';
    1.77 +}
    1.78 +
    1.79 +/**
    1.80 + * Font sizes.
    1.81 + */
    1.82 +
    1.83 +.FontSmaller
    1.84 +{
    1.85 +	font-size: smaller;
    1.86 +}
    1.87 +
    1.88 +.FontLarger
    1.89 +{
    1.90 +	font-size: larger;
    1.91 +}
    1.92 +
    1.93 +.FontSmall
    1.94 +{
    1.95 +	font-size: 8pt;
    1.96 +}
    1.97 +
    1.98 +.FontBig
    1.99 +{
   1.100 +	font-size: 14pt;
   1.101 +}
   1.102 +
   1.103 +.FontDouble
   1.104 +{
   1.105 +	font-size: 200%;
   1.106 +}
   1.107 +
   1.108 +/**
   1.109 + * Font colors.
   1.110 + */
   1.111 +.FontColor1
   1.112 +{
   1.113 +	color: #ff9900;
   1.114 +}
   1.115 +
   1.116 +.FontColor2
   1.117 +{
   1.118 +	color: #0066cc;
   1.119 +}
   1.120 +
   1.121 +.FontColor3
   1.122 +{
   1.123 +	color: #ff0000;
   1.124 +}
   1.125 +
   1.126 +.FontColor1BG
   1.127 +{
   1.128 +	background-color: #ff9900;
   1.129 +}
   1.130 +
   1.131 +.FontColor2BG
   1.132 +{
   1.133 +	background-color: #0066cc;
   1.134 +}
   1.135 +
   1.136 +.FontColor3BG
   1.137 +{
   1.138 +	background-color: #ff0000;
   1.139 +}
   1.140 +
   1.141 +/**
   1.142 + * Indentation.
   1.143 + */
   1.144 +
   1.145 +.Indent1
   1.146 +{
   1.147 +	margin-left: 40px;
   1.148 +}
   1.149 +
   1.150 +.Indent2
   1.151 +{
   1.152 +	margin-left: 80px;
   1.153 +}
   1.154 +
   1.155 +.Indent3
   1.156 +{
   1.157 +	margin-left: 120px;
   1.158 +}
   1.159 +
   1.160 +/**
   1.161 + * Alignment.
   1.162 + */
   1.163 +
   1.164 +.JustifyLeft
   1.165 +{
   1.166 +	text-align: left;
   1.167 +}
   1.168 +
   1.169 +.JustifyRight
   1.170 +{
   1.171 +	text-align: right;
   1.172 +}
   1.173 +
   1.174 +.JustifyCenter
   1.175 +{
   1.176 +	text-align: center;
   1.177 +}
   1.178 +
   1.179 +.JustifyFull
   1.180 +{
   1.181 +	text-align: justify;
   1.182 +}
   1.183 +
   1.184 +/**
   1.185 + * Other.
   1.186 + */
   1.187 +
   1.188 +code
   1.189 +{
   1.190 +	font-family: courier, monospace;
   1.191 +	background-color: #eeeeee;
   1.192 +	padding-left: 1px;
   1.193 +	padding-right: 1px;
   1.194 +	border: #c0c0c0 1px solid;
   1.195 +}
   1.196 +
   1.197 +kbd
   1.198 +{
   1.199 +	padding: 0px 1px 0px 1px;
   1.200 +	border-width: 1px 2px 2px 1px;
   1.201 +	border-style: solid;
   1.202 +}
   1.203 +
   1.204 +blockquote
   1.205 +{
   1.206 +	color: #808080;
   1.207 +}