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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
/* "Global" Settings */
BODY {
background: #ffffff;
}
A:link {
color: #0000cd;
}
A.external:link {
font-style: italic;
}
A:active {
color: #0000ff;
}
A:visited {
color: #bc0000;
}
TH {
background: #cccc99;
color: #000000;
}
TD {
background: #eeeee0;
color: #000000;
}
BODY.navbar {
background:
url(http://starship.skyport.net/~marduk/linbot/blackbar.gif);
}
.navbar TH {
background: #000000;
color: #ffffff;
}
.navbar A:link {
background: none;
color: #ffffff;
}
.navbar A:active {
background: none;
color: #00ff00;
}
.navbar A:visited {
background: none;
color: #ffffff;
}
.navbar TH.home {
background: #cd0000;
color: #ffffff;
}
P.logo {
text-align: center;
}
H1.basename {
text-align: center;
}
TH.title {
background: #cd0000;
color: #ffffff;
font-family: "comic sans ms", verdana, sans-serif;
font-size: 16pt;
text-align: left;
}
TR.link {
background: #cccc99;
color: #000000;
}
TR.status {
background: #bbbbb0;
color: #000000;
}
TR.parent {
background: #ddddd0;
color: #000000;
}
/* time/age fields */
TD.time {
b
background: #ddddd0;
color: #000000;
text-align: right;
}
TD.blank {
background: #ffffff;
}
DIV.table {
/* the only way I know of to align tables via CSS */
text-align: center;
}
.navbar TH {
font-family: arial, sans-serif;
}
P.authorlist {
font-family: helvetica, sans-serif;
font-size: smaller;
font-weight: bold;
text-align: center;
}
|