53 lines
812 B
CSS
53 lines
812 B
CSS
|
/** MENU BAR **/
|
||
|
|
||
|
table.topmenu {
|
||
|
empty-cells: show;
|
||
|
width: 95%;
|
||
|
margin: 0 auto;
|
||
|
border: 4px outset gray;
|
||
|
}
|
||
|
|
||
|
table.topmenu tr td {
|
||
|
vertical-align: middle;
|
||
|
text-align: center;
|
||
|
border: 1px solid gray;
|
||
|
}
|
||
|
|
||
|
table.topmenu h1 {
|
||
|
padding: 0; margin: 0;
|
||
|
font-style: normal;
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
table.topmenu tr td.bottom {
|
||
|
width: 12%;
|
||
|
}
|
||
|
|
||
|
|
||
|
/** PLAYER INFO **/
|
||
|
|
||
|
table.player {
|
||
|
width: 99%;
|
||
|
margin: 5px auto 5px auto;
|
||
|
}
|
||
|
|
||
|
table.player td { vertical-align: middle; }
|
||
|
table.player td.player {
|
||
|
width: 40%;
|
||
|
font-style: italic;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
table.player td.player b { font-style: normal; }
|
||
|
td.funds {
|
||
|
width: 33%;
|
||
|
text-align: left;
|
||
|
font-style: italic;
|
||
|
font-weight: bold;
|
||
|
padding: 5px 0px 5px 5px;
|
||
|
}
|
||
|
td.funds b { font-style: normal; }
|
||
|
table.player td.stime {
|
||
|
width: 50%;
|
||
|
text-align: right;
|
||
|
}
|