blob: 0b336dbc8898fed4e881fe448fd1f305cd6378c2 (
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
|
/* style sheet for the validator's results page */
/* $Id: results.css,v 1.8 2001-09-20 18:12:13 link Exp $ */
@import url(base.css);
.markup {
color: red;
font-weight: bolder;
}
.input {
color: black;
background-color: #eeeeee; /* light grey */
}
table.header {
background-color: silver;
}
th {
padding-right: .5em;
}
td {
text-align: left;
padding-left: .5em;
}
h1.title img {
vertical-align: middle;
}
#Notice {
width: 75ex;
border: solid;
margin: .2em;
padding: .5em;
text-align: justify;
}
.info {background: white; border-color: gray;}
.warning {background: silver; border-color: gray;}
.error {background: yellow; border-color: black;}
.fatal {background: red; border-color: black;}
|