blob: 9df98c6c0889ff574b6fac6754e282b67c05894d (
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
  | 
body {
  background: #fdf6e3;
  color: #002b36;
}
a:link {
  color: #dc322f;
  text-decoration: none;
}
a:visited {
}
a:hover {
  color: #d33682;
  text-decoration: underline;
}
a:active {
}
.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
th {
  color: #2aa198;
}
tr.odd {
  background: #eee8d5;
}
tr.even {
  background: #fdf6e3;
}
tr:hover {
  background: #586e75;
  color: #fdf6e3;
}
 
  |