blob: 820425064e150c5209f0766040c6e41e2478fff0 (
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
|
/*
Quality Tips Style Sheet for the W3C Markup Validation Service.
Copyright 2000 W3C (MIT, INRIA, Keio). All Rights Reserved.
See http://www.w3.org/Consortium/Legal/ipr-notice.html#Copyright
$Id: tips.css,v 1.7 2004-05-09 15:56:49 link Exp $
*/
dl.tip {
margin-top: 0em;
text-align: center;
background: #eeeeee;
border-top: 1px solid black;
border-bottom: 1px solid black;
padding: .5em;
}
dl.tip dt {
text-align: center;
color: black;
background: #eeeeee;
display: inline;
}
dl.tip dt a {
text-decoration: none;
color: inherit;
}
dl.tip dd {
text-align: center;
text-decoration: none;
font-weight: bolder;
color: blue;
display: inline;
}
dl.tip dd a {
text-decoration: none;
}
|