blob: b2c2a6191d73a2d37d88a8620237bee00f9f4432 (
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
|
html, body, p, a {
margin: 0;
font-family: "Courier New", fixed, monospace;
background: #181818;
color: #D3D3D3;
}
.term {
font-family: "Courier New", fixed, monospace;
font-size: 12px;
color: #5E83E0;
background: none;
letter-spacing: 1px;
}
.term .termReverse {
color: #232e45;
background: #5E83E0;
}
a.tlink, a.tlink:link, a.tlink:visited {
text-decoration: underline;
color: blue;
}
a, a:link, a:visited {
text-decoration: none;
color: #5E83E0;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: underline;
color: orange;
}
#applet { position: absolute; top: 4px; left: 4px; z-index: 2; }
#link { position: absolute; top: 4px; right: 4px; z-index: 3; }
|