blob: 1b3a992610f3c8ba9952d44ccf90d43b4c75ee8a (
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
|
/* HTML tags */
BODY {
background-color: white;
color: darkblue;
}
TD { color: darkblue; }
H1 { text-align: center; }
H3 { font-style: italic; }
HR {
width: 85%;
align: center;
}
.copyright { color: darkblue; }
/* Links */
:link { color: blue; }
:visited { color: purple; }
:active { color: red; }
.el:link { font-style: italic; }
/* Examples */
DIV.fragment {
color: maroon;
}
|