/[suikacvs]/test/html-webhacc/cc-style.css
Suika

Contents of /test/html-webhacc/cc-style.css

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.10 - (hide annotations) (download) (as text)
Tue Sep 11 08:25:23 2007 UTC (16 years, 8 months ago) by wakaba
Branch: MAIN
Changes since 1.9: +17 -10 lines
File MIME type: text/css
Scoring bug fixes

1 wakaba 1.1 @import '/www/style/html/xoxo.css';
2    
3 wakaba 1.2 .section {
4     display: block;
5     margin: 1em;
6     border: #800080 1px solid;
7     padding: 0.5em 1em;
8     }
9    
10 wakaba 1.10 dt, strong, th {
11 wakaba 1.2 font-weight: bolder;
12     font-family: sans-serif;
13     }
14     dt:after {
15     content: ":";
16     }
17    
18 wakaba 1.5 h1 {
19     font-weight: bolder;
20     font-family: sans-serif;
21     font-size: 180%;
22     }
23    
24 wakaba 1.2 h2 {
25     margin: 0;
26     border-style: none;
27     padding: 0;
28     font-weight: bolder;
29     font-family: sans-serif;
30     font-size: 150%;
31     }
32    
33 wakaba 1.5 h3 {
34     font-weight: bolder;
35     font-family: sans-serif;
36     font-size: 100%;
37     background-color: #fff0f0;
38     color: black;
39     }
40    
41 wakaba 1.2 .tree-text q, .tree-cdata q, .tree-comment q {
42     display: block;
43     }
44    
45     q, #source-string li {
46 wakaba 1.1 white-space: pre;
47     white-space: -moz-pre-wrap;
48     white-space: pre-wrap;
49     }
50    
51 wakaba 1.2 q, #source-string ol {
52     background-color: #f0f0ff;
53     color: black;
54     line-height: 1.5;
55     }
56    
57     q:before, q:after {
58     content: "";
59     }
60    
61 wakaba 1.4 #parse-errors dl:empty:before {
62     content: "This document has no parse error.";
63     font-style: italic;
64     }
65    
66     #document-errors dl:empty:before {
67     content: "This document has no document error.";
68     font-style: italic;
69     }
70    
71 wakaba 1.2 #document-tree > ol {
72     margin-left: 0;
73     padding-left: 0;
74     }
75     #document-tree > ol > li {
76 wakaba 1.7 /* display: block;
77 wakaba 1.2 list-style: none;
78     margin-left: 0;
79 wakaba 1.7 padding-left: 0; */
80 wakaba 1.2 }
81    
82 wakaba 1.7 #document-tree ol /*ol*/ {
83 wakaba 1.2 margin-left: 1em;
84     padding-left: 0;
85     }
86    
87 wakaba 1.7 #document-tree ol /*ol*/ li {
88 wakaba 1.2 margin-left: 0;
89     padding-left: 0.4em;
90     }
91    
92     #document-tree ul.attributes {
93     margin-left: 3em;
94     padding: 0;
95     }
96    
97     #document-tree ul.attributes li {
98     display: inline;
99     list-style: none;
100     margin: 0 2em 0 0;
101     padding: 0;
102     text-indent: 0;
103     font-size: 90%;
104     }
105    
106 wakaba 1.10 #parse-errors dd, #document-errors dd, #error-description h3,
107     #result-para {
108 wakaba 1.4 margin-left: 20px;
109     padding-left: 40px;
110     min-height: 32px;
111     background-image: url(large-stop);
112 wakaba 1.6 background-position: center left;
113     background-repeat: no-repeat;
114     }
115    
116     #identifiers dd, #terms dd {
117     margin-left: 20px;
118     padding-left: 20px;
119     min-height: 20px;
120     }
121    
122     #identifiers dd + dd, #terms dd + dd {
123     background-image: url(error);
124     background-position: center left;
125 wakaba 1.4 background-repeat: no-repeat;
126     }
127    
128 wakaba 1.5 #error-description h3 {
129     margin-left: 1em;
130     margin-right: 1em;
131     }
132    
133 wakaba 1.10 #document-errors dd.should, #error-description .should h3,
134     #result-para.SEE-RESULT {
135 wakaba 1.4 background-image: url(large-alert);
136     }
137    
138     #document-errors dd.unsupported {
139     margin-left: 60px;
140     border: red 0.2em solid;
141     padding: 0.5em;
142 wakaba 1.5 }
143    
144 wakaba 1.10 #document-errors dd.unsupported, #error-description .unsupported h3,
145     #result-para.uncertain {
146 wakaba 1.4 background-image: none;
147     }
148    
149 wakaba 1.10 #result-para.PASS {
150     background-image: url(ok);
151     }
152    
153 wakaba 1.1 #nav-items {
154     display: block;
155     position: fixed;
156     top: 0.5em;
157     right: 0.5em;
158     width: auto;
159     height: auto;
160     font-size: 90%;
161     background-color: #f4fff4;
162     color: black;
163     padding: 0;
164     line-height: 1.1;
165     }
166    
167     #nav-items li {
168     display: block;
169     list-style: none;
170     margin: 0;
171     border-style: none;
172     padding: 0;
173     text-align: center;
174     }
175    
176     #nav-items li a[href] {
177     display: block;
178     border-style: none;
179     color: inherit;
180     text-decoration: none;
181     }
182    
183 wakaba 1.3 img {
184     border-style: none;
185     }
186    
187 wakaba 1.4 code {
188     font-family: "Courier New", "Courier", monospace;
189     letter-spacing: 0.1em;
190     background-color: transparent;
191     color: orangered;
192 wakaba 1.7 white-space: -moz-pre-wrap;
193     white-space: pre-wrap;
194 wakaba 1.4 }
195    
196 wakaba 1.9 .rfc2119 {
197     border-style: none;
198     text-transform: lowercase;
199     font-variant: small-caps;
200     font-style: normal;
201     text-decoration: none;
202     font-weight: normal;
203     font-family: sans-serif;
204     }
205    
206     #result-summary table {
207     margin-left: auto;
208     margin-right: auto;
209     border: 3px solid #800080;
210     border-collapse: collapse;
211     }
212    
213     #result-summary tbody, colgroup {
214     border: 3px solid #800080;
215     }
216    
217     #result-summary th {
218     background-color: #fff0f0;
219     color: black;
220     }
221    
222     #result-summary th, #result-summary td {
223     border: 1px solid #800080;
224     padding: 0.2em 0.5em;
225     text-align: center;
226     empty-cells: show;
227     }
228    
229     .uncertain td, p.uncertain {
230     background-color: #e1e1ff;
231     color: black;
232     }
233    
234 wakaba 1.10 .FAIL, .uncertain td.FAIL {
235 wakaba 1.9 background-color: #ffcece;
236     color: black;
237     }
238    
239 wakaba 1.10 .SEE-RESULT, .uncertain td.SEE-RESULT {
240 wakaba 1.9 background-color: #e1e1ff;
241     color: black;
242     }
243    
244     .PASS {
245     background-color: #ddffdd;
246     color: black;
247     }
248    
249     #result-para {
250 wakaba 1.10 padding-top: 0.2em;
251     padding-bottom: 0.2em;
252     padding-right: 1em;
253 wakaba 1.9 }
254    
255 wakaba 1.1 /*
256    
257     Copyright 2007 Wakaba <w@suika.fam.cx>
258    
259     This library is free software; you can redistribute it
260     and/or modify it under the same terms as Perl itself.
261    
262 wakaba 1.10 $Date: 2007/09/10 11:51:09 $
263 wakaba 1.1
264     */

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24