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 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
@import url(../rsc/basic.css); /* Import basic styles */
@import url(../rsc/img.css); /* Import standard image styles */
@import url(../rsc/forms.css); /* Import standard form styles */
/* Global page layout */
#rowheader {
text-align: center;
margin-bottom: 1em;
}
#rowheader2
{ /* This one is use on the default home page */
text-align: center;
margin-bottom: 1em;
border-bottom: 1px solid #CCCCCC;
}
#rowfooter {
margin-top: 1em;
clear: both;
text-align: center;
border-top: 1px solid #CCCCCC;
padding-top: 1ex;
color: #ccc;
font: 70% Verdana, Arial, Helvetica, sans-serif;
}
/* For the site header: */
h1 {
font-family: Arial, Helvetica, sans-serif;
/* font-size: 240%; */
color: #f90;
margin: 0;
}
#tagline{
position: relative;
font-style: italic;
bottom: 20px;
margin-left: 110px;
}
#version{
position: relative;
bottom: 15px;
margin-bottom: .3ex;
}
#quicklinks {
border-top: 1px solid #f90;
border-bottom: 1px solid #f90;
background-color: #fc9;
text-align: center;
font: bold 84% Verdana, Arial, Helvetica, sans-serif;
padding-top: .1em;
padding-bottom: .1em;
}
/* Content styles: */
h2,
h3,
h4,
h5,
h6 {
font-family: Arial, Helvetica, sans-serif;
color: #f90;
}
blockquote {
border: 2px dotted #999;
background-color: #eee;
padding-left: 1em;
padding-right: 1em;
font-family: Georgia, "Times New Roman", Times, serif;
}
/* Image layout */
div.FigZone {
text-align: center;
font: 84% Arial, Helvetica, sans-serif;
}
div.FigZone img{
border: 0px none;
margin: 0ex;
}
div.FigCaption {
height: 2.5em;
margin-top: 1ex;
}
div.FigCent240 {
float: left;
width: 264px;
padding: 12px 0ex;
margin-right: 1ex;
margin-bottom: 1ex;
background-color: #ddd;
border: 1px solid #aaa;
text-align: center;
}
/* For the site footer: */
/* Genral styles */
body
{
background: #fff;
color: #000;
}
a:link
{
color: #6699CC;
}
a:active,
a:visited
{
color: #336699;
}
a:hover
{
color: #f90;
}
hr {
height: 0px;
width: 100%;
border: 0;
border-top: 1px solid #ccc;
}
.subtitle {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
}
ul.expanded li, ol.expanded li
{
margin-top: 2ex;
margin-bottom: 2ex;
}
fieldset
{
border: 1px solid #ddd;
margin: 1em;
padding-bottom: 2ex;
padding-left: 2ex;
padding-right: 2ex;
}
legend
{
font-weight: bold;
}
/* Install Locale selection: */
div.installSideBar {
float: right;
border: 1px dotted black;
padding: 1ex;
width: 20%;
margin-left: 2ex;
background-color: #fff;
}
div.installSideBar h2,
div.installSideBar p
{
margin-top:0;
}
div.installSideBar ul {
list-style: none;
margin-left: 1em;
padding-left: 0;
}
|