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
|
body {
color: white;
background-color: #1f3048;
font-family: "Gill Sans MT", "Gill Sans", GillSans, sans-serif, Verdana, Arial, Helvetica;
text-align: center;
font-size: 12px;
}
a:link, a:visited {
color: yellow;
text-decoration: none;
}
td.title { font-weight: bold; }
table {
vertical-align: top;
margin-left: auto;
margin-right: auto;
background-color: #1f4060;
}
th { color: #ffa500; }
td {
padding: 0px 10px;
border-bottom: 1px dashed #1f3048;
}
td.plot, td.actors, td.notes {
white-space: pre-wrap;
font-size: 0.9em;
text-align: left;
overflow: auto;
}
/* Navigation bar */
.navi { text-align: center; }
.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;
}
.navi p, .copyright {
color: #1f4060;
font-size: 0.8em;
}
.copyright {
font-size: 0.7em;
margin-top: 5px;
}
|