blob: 281a7f192d692a746dd8f54dd6ae3f6dcdedb59c (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
/* style sheet for the validator's results page */
/* $Id: results.css,v 1.10 2002-09-29 22:46:34 link Exp $ */
.markup {
color: red;
font-weight: bolder;
}
.input {
color: black;
background-color: #eeeeee; /* light grey */
}
fieldset {
background-color: #eeeeee;
}
ul#Warnings {
clear: left;
padding-top: 1ex;
}
div.meat {
/* border: 1px solid red; */ /* Used for debugging */
margin-right: 10em;
}
/*
div.splash {
border: 1px solid blue; /* Used for debugging */
background: #eeeeee;
}
*/
th {
padding-right: .5em;
text-align: right;
vertical-align: middle;
white-space: nowrap;
}
td {
text-align: left;
padding-left: .5em;
}
.info {
background: white;
border-color: gray;
}
.warning {
background: silver;
border-color: gray;
}
.error {
background: yellow;
border-color: black;
}
.fatal h2 {
background: red;
border: solid black 1px;
}
.valid {
background: #053188;
color: white;
font-family: Tahoma, Verdana, Myriad Web, Syntax, sans-serif;
font-size-adjust: .53;
font-size: 1.5em;
font-weight: 500;
font-style: normal;
text-decoration: none;
word-spacing: normal;
letter-spacing: normal;
text-transform: none;
border-color: black;
}
.valid a {
color: yellow;
}
.valid a:visited {
color: silver;
}
.valid a:hover {
color: #053188;
}
.valid a:active {
color: red;
}
.invalid {
/* clear: both; */
background: #880531;
color: white;
font-family: Tahoma, Verdana, Myriad Web, Syntax, sans-serif;
font-size-adjust: .53;
font-size: 1.5em;
font-weight: 500;
font-style: normal;
text-decoration: none;
word-spacing: normal;
letter-spacing: normal;
text-transform: none;
border-color: black;
}
.invalid a {
color: yellow;
}
|