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
|
body {
font-family: verdana, geneva, arial, helvetica, sans-serif;
font-size: 12px;
background-color: #333333;
color: #ffffff;
font-size: 12px;
}
td {
padding-right: 5px;
text-align: center;
}
td.title {
color: #ffcc00;
font-style: oblique;
font-family: "palatino linotype", palatino, "book antiqua", georgia, times, "times new roman", serif;
font-size: 16px;
text-align: center;
}
td.otitle {
font-size: 12px;
margin-bottom: 5px;
font-style: oblique;
font-family: arial, sans-serif;
font-family: "palatino linotype", palatino, "book antiqua", georgia, times, "times new roman", serif;
text-align: right;
font-weight: bold;
}
th, td.number {
color: white;
background-color: #444444;
border: 1px solid black;
text-align: center;
}
td.plot {
text-align: left;
white-space: pre-wrap;
overflow: auto;
}
td.plot, td.actors, td.notes { display: none; }
tr:hover td.plot, tr:hover td.actors, tr:hover td.notes {
content: normal;
position: absolute;
width: 200px;
top: auto;
display: inline;
white-space: pre-wrap;
font-family: courier, sans-serif;
font-size: 0.9em;
background-color: #555555;
color: white;
text-align: left;
padding: 0px;
overflow: auto;
}
tr:hover td.plot { left: 5px; }
tr:hover td.actors { left: 207px; }
tr:hover td.notes { left: 409px; }
a:link { color: #ecbe35; text-decoration: none; }
a:hover { color: #ffffff; text-decoration: none; }
a:visited { color: #ecbe35; text-decoration: none; }
/* Navigation bar */
.navi, .copyright {
text-align: center;
color: #444444;
font-size: 0.8em;
}
.navi p { display: inline; }
.navi p:before { content: "["; }
.navi p:after { content: "]"; }
.navi p#prev:before, .navi p#next:before { content: ""; }
.navi p#prev:after, .navi p#next:after { content: ""; }
.navi p#current {
font-size: 1.1em;
color: white;
}
.copyright {
font-size: 0.7em;
margin-top: 5px;
}
|