- Add test folder
[htmlpurifier-web.git] / style.css
blob6f8fe219db180da8b88d9ab1fadb9cb1f462c697
1 /* font recommendation courtesy of pickle of forums.devnetwork.net */
2 body {
3 margin:0 0 3em 0;
4 padding:0;
5 font-family:Georgia,serif;
6 font-size:10.5pt;
7 background-color:#F9F9FF;
8 color:#000;
10 /* we can't use img#logo, because in IE < 7 it transmutates into a span */
11 #logo {
12 float:left;
13 margin:0.5em;
15 #header {
16 margin:0 0 0.3em 0;
17 padding:0.5em;
18 background-color:#BCC8D8;
19 color:#FFF;
20 font-family:Georgia, serif;
21 font-weight:normal;
22 font-variant:small-caps;
23 letter-spacing:0.2em;
24 font-size:2em;
25 border-bottom:1px solid #8393AF;
27 #header a {text-decoration:none;}
28 #header a:hover .html {background-color:#BCC8D8;color:#8196B5;}
29 #header a:hover .purifier {background-color:#BCC8D8;color:#F0F2F6;}
30 #header .html {background-color:#BCC8D8;color:#3C578C;}
31 #header .purifier {background-color:#BCC8D8;color:#FFF;}
33 h1#title {
34 text-align:right;
35 float:right;
36 margin:0.5em 2em 0;
39 #content {margin: 1em 4em;clear:left;}
41 p {
42 margin:0;
43 text-indent:2em;
45 p.lead{
46 text-indent:0;
49 blockquote.digression{
50 margin-left:4em;
51 margin-right:4em;
52 font:11pt Helvetica, sans-serif;
55 #navigation {
56 clear:left;
57 margin:0 5em;
58 text-align:center;
60 #navigation h2 {display:none;}
61 #navigation ol {
62 padding:0;
63 margin:0;
65 #navigation li {
66 margin:0 .4em;
67 display:inline;
70 #filter fieldset, #filter legend {background:#586F9C; color:#FFF; border:0;}
71 #filter legend {padding:0.4em; font-weight:bold;}
72 #filter textarea {width:100%;}
74 .nest {
75 list-style-type:none;
77 pre {
78 margin-left:4em;
80 pre.command:before {
81 content:"$ ";
82 font-weight:bold;
84 .download {
85 font-weight:bold;
87 acronym {text-transform:lowercase;font-variant:small-caps;}
88 a acronym {border-bottom:none;}
89 form {margin:1em 0;}
91 table {
92 margin:1em;
94 table thead th {border-bottom:1px solid #3C578C;}
95 table td, table th {
96 padding:0 .4em;
99 table.summary {width:25em;
100 margin-left:auto;margin-right:auto;border-collapse:collapse;
101 border: 1px solid #3C578C;background-color:#FFF;color:#000;
103 table.summary th, table.summary td {margin:0;padding:.1em;}
104 table.summary td {padding-left:1em;}
105 table.summary th {
106 text-align:right;
107 padding-right:1em;
108 width:50%;
109 border-right:1px solid #3C578C;
111 .wide-table {
112 width:100%;
114 .wide-table td, .wide-table th {white-space:nowrap;}
116 .impl-yes {background:#9D9;color:#000;}
117 .impl-no {background:#E88;color:#000;}
118 .impl-partial {background:#FFA;color:#000;}
119 .impl-almostyes {background:#CEC;color:#000;}
120 .impl-irrelevant {background:#9D9;color:#000;}
122 ol.notes {
123 font-size:8pt;
126 blockquote.fancy {
127 background: transparent url(quote-left.png) left top no-repeat;
129 blockquote.fancy div.quote {
130 padding: .5em 48px .5em;
131 background: transparent url(quote-right.png) right bottom no-repeat;
133 blockquote.fancy div.origin {
134 text-align:right;
137 .disclaimer {
138 margin:1em 3em; border:1px solid #F00; background:#FBB; padding:1em;
141 .download-button, .compare-button {
142 margin:0.5em; border:0;
145 .download-button {float:right; margin-left:1em;}
146 .compare-button {float:left; margin-right:1em; margin-left:0;}
148 /* Table of Contents styling, currently only supports up to h3 */
150 #toc ol ol { list-style-type:lower-alpha; }
152 #toc ol > li:before {content:counter(h2) ". "; counter-increment:h2; margin-right:1em;}
153 #toc > #innertoc ol {counter-reset:h2; list-style-type:none;}
154 #toc ol ol > li:before {content:counter(h2) "." counter(h3) ". "; margin-right:1em; counter-increment:h3;}
155 #toc > #innertoc ol ol {counter-reset:h3; list-style-type:none;}