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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/*****************
* default style *
*****************/
* { margin: 0; padding: 0; }
body
{
color: #000;
background-color: #000;
background-image: url(gradient.png);
background-repeat: repeat-y;
font: 11px verdana, arial, helvetica, sans-serif;
text-align: center;
padding: 1.5em 20px;
}
/***************
* links style *
***************/
a { font-weight: bold; }
a:link, a:visited, a:active { text-decoration: none }
a:hover { text-decoration: underline overline }
a:link { color: #069; }
a:visited { color: #69c; }
a:hover, a:active { color: #f80; }
/******************
* contents style *
******************/
div.contents
{
color: #000;
background-color: #fff;
text-align: left;
text-indent: 0;
padding: 0.5em 1em;
margin-bottom: 1em;
border-left: 2px groove #069;
border-right: 2px groove #069;
border-bottom: 2px groove #069;
}
/*******************
* IE6: Holly Hack *
*******************/
* html div.contents { height: 1%; }
div.contents { display: block; }
div.contents:first-letter { color: #f80; font-size: xx-large; }
div.contents img
{
float: left;
margin-right: 10px;
margin-bottom: 5px;
}
/****************
* tables style *
****************/
table
{
width: 50em;
margin-left: auto;
margin-right: auto;
margin-top: 0.5em;
margin-bottom: 1em;
font-size: 11px;
}
table tr.odd { background-color: #cef; }
table tr.even { background-color: #9cf; }
table td { text-align: left; text-indent: 0.5em; }
table td.center { font-weight: bold; text-align: center; }
/****************
* bottom style *
****************/
#bottom
{
clear: both;
text-align: center;
color: #fff;
margin: 1.5em;
}
#bottom a { color: #fff; }
/********************
* delimiters style *
********************/
.clear { clear: both; }
.center { text-align: center; }
b { color: #f80; }
p { margin: .3em 0; padding: .3em 0; }
ul, ol { margin-left: 2em; }
ol.inline { margin-left: 0; }
ol.inline li { display: inline; margin-right: 1em; }
pre
{
font: 11px verdana, arial, helvetica, sans-serif;
margin: 0.5em 0;
padding: 0;
}
/****************
* titles style *
****************/
h1
{
clear: both;
color: #fff;
text-align: center;
text-transform: uppercase;
font-size: 14px;
padding-top: 1.5em;
padding-bottom: 0.5em;
}
h3
{
clear: both;
color: #888;
text-align: left;
font-size: 11px;
padding-top: 1em;
}
|