blob: 947b1ba1db7e18aecdc48d06691efac9ee33ce1c (
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
|
/* style sheet for the validator's results page */
/* $Id: results.css,v 1.5 2001-07-24 10:18:30 link Exp $ */
.markup {
color: red;
font-weight: bolder;
}
.input {
color: black;
background-color: #eeeeee; /* light grey */
}
table.header {
background-color: silver;
}
th {
text-align: right;
padding-right: .5em;
}
td {
text-align: left;
padding-left: .5em;
}
h1.title img {
vertical-align: middle;
}
.Warning {
width: 75ex;
background: yellow;
border: solid;
border-color: black;
margin: .2em;
padding: .5em;
text-align: justify;
}
|