1 body {
 2     background-color: #333;
 3     color: #ccc;
 4     }
 5
 6 .header {
 7     color: #fff;
 8     font-family: Verdana, Arial, Helvetica, sans-serif;
 9     font-size: small;
10 }
11
12 .readme {
13     color: #fff;
14     font-family: Verdana, Arial, Helvetica, sans-serif;
15     font-size: small;
16 }
17
18 /* links */
19 a           { color: #ddd; text-decoration: none; }
20 a:link      { color: #ddd; text-decoration: none; }
21 a:visited   { color: #ddd; text-decoration: none; }
22 a:active    { color: #eee; text-decoration: none; }
23 a:hover     { color: #f62; text-decoration: none; }
24
25 /* div list */
26 .list {
27     border: 1px solid #f62;
28     padding: 5px;
29     width: 820px;
30 }
31
32 /* table header */
33 th {
34     color: #f62;
35     font-family: Verdana, Arial, Helvetica, sans-serif;
36 }
37
38 td {
39     font-family: Verdana, Arial, Helvetica, sans-serif;
40     font-size: small;
41 }
42
43 /* name colum */
44 .n {
45     color: #f62;
46     width: 300px;
47     text-align: left;
48 }
49
50 /* last modified colum */
51 .m {
52     text-align: left;
53     width: 200px;
54 }
55
56 /* size colum */
57 .s {
58     text-align: left;
59     width: 100px;
60 }
61
62 /* type colum */
63 .t {
64     text-align: left;
65     width: 220px;
66 }
67
68 /* footer colum */
69 .foot {
70     color: #ccc;
71     font-size: small;
72     font-family: Verdana, Arial, Helvetica, sans-serif;
73 }
74
75