style.css 3.63 KB
Newer Older
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
/* global font and body settings */
body {
	font-size : 100%;
	background-color : #d3d6d9;
	padding: 0px;
	color: #33333;
	margin: 0px 0px 30px 0px;
}
body, td, th {
	font-family : arial, helvetica, sans-serif;
	font-size : 10pt;
}
pre, tt, code {
	font-family : courier new, monospaced;
	font-size : 9pt;
}
#pageContainer {
	display: block;
	position: relative;
	clear: all;
	background-color: #fff;
	border: 1px solid #999;
	padding: 40px;
	margin: 30px;
	-moz-border-radius: 6px;
}
#pageHeader {
	display: block;
	position: relative;
	height: 80px;
	background-color: #e7eaee;
	border: 1px solid #cccccc;
	border-bottom: none;
	-moz-border-radius: 5px 5px 0px 0px;
	margin: 10px 0px 0px 0px;
}
#pageBody {
	margin: 0px 18px 0px 20px;
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



/* anchors */
a:link {
	color: #11568c;
}
a:visited {
	color: #571c8d;
}
a:hover {
	color: #7a1d42;
	text-decoration : underline;
}
a:active {
	color: #7a1d42;
}



/* page header elements (logo and navigation) */
#logo {
	display: block;
	position: relative;
	background: url(images/header_logo.gif) no-repeat;
	width: 135px;
	height: 40px;
	margin: 21px 20px 0px 0px;
	overflow: hidden;
	float: right;
}
.navigation {
	display: block;
	position: relative;
	height: 20px;
	background-color: #335588;
	border: 1px solid #cccccc;
	border-top: none;
	color: #ffffff;
	font-size: 11px;
	line-height: 18px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 25px 0px;
	overflow: hidden;
}
.navigation a {
	margin: 0px 0px 0px 20px;
}
.navigation a:link { color: #ffffff; }
.navigation a:visited { color: #ffffff; }
.navigation a:hover { color: #ffffff; }
.navigation a:active { color: #ffffff; }



/* headings */
h1 {
	display: block;
	position: relative;
	font-size : 1.7em;
	font-weight : bold;
	color: #670e15;
	padding: 0px;
	margin: 30px 0px 0px 20px;
}
h2 {
	font-size : 1.3em;
	font-weight : bold;
	margin: 40px 0px 6px 0px;
	padding: 0px;
	color: #335588;
}
h3 {
	font-size : 1.0em;
	font-weight : bold;
	margin: 25px 0px 3px 0px;
	padding: 0px;
	color: #334466;
}



/* general elements */
p {
	margin: 0px 0px 15px 0px;
125
}
Matt Tucker's avatar
Matt Tucker committed
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
ul {
	margin: 5px 0px 15px 35px;
}
li {
	padding-bottom : 4px;
}
tt {
	font-family : courier new;
	font-weight : bold;
	color : #060;
}
hr {
	display: block;
	height: 1px;
	background-color: #999999;
	border: none;
	margin: 40px 0px 20px 0px;
}


fieldset pre {
	padding : 1em;
	margin : 0px;
}
fieldset {
	margin-left : 2em;
	margin-right : 2em;
	border : 1px #ccc solid;
	-moz-border-radius : 5px;
}



/* classes */
.comment {
	color : #666;
	font-style : italic;
}
Matt Tucker's avatar
Matt Tucker committed
165
.subheader {
166
	font-weight : bold;
Matt Tucker's avatar
Matt Tucker committed
167 168
}
.footer {
169 170 171 172 173 174
	font-size : 0.8em;
	color : #999;
	text-align : center;
	width : 100%;
	border-top : 1px #ccc solid;
	padding-top : 2px;
Matt Tucker's avatar
Matt Tucker committed
175 176
}
.code {
177 178 179 180 181
	display: block;
	width: auto;
	border : 1px #ccc solid;
	padding : 6px;
	margin : 10px 20px 10px 20px;
Matt Tucker's avatar
Matt Tucker committed
182 183
}
.note {
184 185 186 187 188 189 190 191 192 193 194 195
	font-family : verdana;
	font-size : 0.85em;
	color : #600;
	text-decoration : none;
	font-weight : bold;
}
.nav, .nav a {
	font-family : verdana;
	font-size : 0.85em;
	color : #600;
	text-decoration : none;
	font-weight : bold;
Matt Tucker's avatar
Matt Tucker committed
196 197
}
.nav {
198 199 200 201 202 203
	width : 100%;
	border-bottom : 1px #ccc solid;
	padding : 3px 3px 5px 1px;
}
.nav a:hover {
	text-decoration : underline;
Matt Tucker's avatar
Matt Tucker committed
204
}
205
.question {
Matt Tucker's avatar
Matt Tucker committed
206 207 208 209 210 211 212 213
	font-weight: 600;
}
.answer {
	font-weight: 300;
}
.toc {
	right: 5px;
}
214 215 216 217 218


table.dbtable {
	border : 1px #ccc solid;
	width : 600px;
Matt Tucker's avatar
Matt Tucker committed
219
}
220 221
tr, th {
	border-bottom : 1px #ccc solid;
Matt Tucker's avatar
Matt Tucker committed
222
}
223 224
th, td {
	padding-right : 15px;
Matt Tucker's avatar
Matt Tucker committed
225
}
226 227 228 229
th {
	text-align : left;
	white-space : nowrap;
	background-color : #eee;
Matt Tucker's avatar
Matt Tucker committed
230
}
231

Matt Tucker's avatar
Matt Tucker committed
232
.primary-key {
233
	background-color : #ffc;
Matt Tucker's avatar
Matt Tucker committed
234
}
235 236 237 238 239 240 241


/* Protocol support specific styles */
.supported { background-color: #D0FFCB }
.partially_supported { background-color: #FEFF94 } 
.unsupported { background-color: #FFB4B4 }