blob: 37229f3fd11662870c9da87e4e259bff9f4520b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/*
XML Results Style Sheet for the W3C Markup Validation Service.
Copyright 2002 Terje Bless <link@pobox.com>. All Rights Reserved.
See http://www.w3.org/Consortium/Legal/ipr-notice.html#Copyright
$Id: xml-results.css,v 1.6 2005-08-18 04:25:17 bjoern Exp $
*/
result, meta, uri, modified, server, size, encoding, doctype, warnings, messages {display: block}
strong, a {display: inline}
meta {
margin-left: 5em;
margin-bottom: 2em;
border-bottom: 1px solid black;
font-weight: bolder;
}
uri:before { content: 'URL: ' }
modified:before { content: 'Modified: ' }
server:before { content: 'Server: ' }
size:before { content: 'Size: ' }
encoding:before { content: 'Encoding: ' }
doctype:before { content: 'Doctype: ' }
warnings {
border-top: 1px solid red;
border-bottom: 1px solid red;
background: gray;
margin: 3em;
}
warning {
background: red;
display: list-item;
}
messages {margin: 2em}
msg {
display: list-item;
}
|