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
| body
{
background-color: #ffffff;
text-align: center;
font-family: Verdana, Arial, sans-serif;
font-size: 0.8em;
margin: 0px;
color: #2a2727;
line-height: 1.5em;
}
/* WRAPPER - sets board width */
#initWrap
{
width: 95%;
margin: 15px auto 20px auto;
text-align: left;
padding: 5px;
color: #000000;
background-color: #fff;
}
/*******************************
* Headings
*******************************/
/* Topic Name */
h1
{
font-size: 16px;
margin: 0px;
}
/* Category colors and control */
h2
{
background: #648cbf;
color: #f7f8f9;
padding: 4px;
margin: 0 0 1px 0;
font-size: 12px;
}
h2 a:link,
h2 a:active,
h2 a:visited
{
background: #fff;
color: #f7f8f9;
text-decoration: none;
}
h2 a:hover
{
background-color:#fff;
color: #f7f8f9;
}
/* subtitle + table headings */
.Subtitle,
th
{
background: #dee6f1;
color: #000000;
font-size: 11px;
padding: 2px;
} |