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
|
html
{
font-family: arial;
}
body
{
padding: 25px;
padding-top: 0px;
margin:0px;
}
h1
{
font-size: 48px;
text-align: center;
}
h2
{
margin-left: -25px;
padding-left: 60px;
padding-bottom: 3px;
border-bottom: 2px #F88 solid;
width: 500px;
font-size: 30px;
font-style: italic;
}
.CivRosterVariety
{
margin-top: 10px;
border-collapse: collapse;
}
.CivRosterVariety th
{
font-weight: normal;
width:100px;
height:50px;
margin-left: 50px;
font-size: 14px;
}
.CivRosterVariety tr
{
border-bottom: 1px white solid;
}
.CivRosterVariety td
{
width: 20px;
height:20px;
border-right: 1px solid white;
}
.CivRosterVariety .vertical-text {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
max-width: 20px;
height: 25px;
padding-right:0px;
font-size: 20px;
}
table .Sub
{
padding: 4px;
font-size: 13px;
text-align: left;
}
table tr
{
border-bottom: 1px #F3F3F3 solid;
}
table td
{
text-align: center;
font-weight: normal;
min-width: 25px;
padding: 3px 6px 3px 6px;
}
table th
{
border-bottom: 1px #CCC solid;
font-size: 15px;
padding:4px;
margin: 2px;
text-align: center;
font-weight: normal;
min-width: 25px;
border-left:1px black solid;
}
table .Label td, table .Label th
{
border-bottom: 1px #000 solid;
}
table
{
border: 2px black solid;
font-size: 12px;
border-collapse: collapse;
text-align: center;
}
|