slitaz-forge diff doc/lib/tpl/slitaz-brown/design.css @ rev 29

rake: remove log
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Mar 02 21:25:07 2011 +0100 (2011-03-02)
parents
children 38815f7d58ac
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/doc/lib/tpl/slitaz-brown/design.css	Wed Mar 02 21:25:07 2011 +0100
     1.3 @@ -0,0 +1,1101 @@
     1.4 +/**
     1.5 + * Design elements for default Template
     1.6 + *
     1.7 + * @author Andreas Gohr <andi@splitbrain.org>
     1.8 + * @author Anika Henke <henke@cosmocode.de>
     1.9 + */
    1.10 +
    1.11 +/* -------------- general elements --------------- */
    1.12 +
    1.13 +/* * { padding: 0; margin: 0; } */
    1.14 +
    1.15 +/* SliTaz stuff */
    1.16 +html {
    1.17 +	min-height:  102%;
    1.18 +}
    1.19 +
    1.20 +body {
    1.21 +	background: #ffffff;
    1.22 +	color: black;
    1.23 +	font: 13px sans-serif, vernada, arial;
    1.24 +	margin: 0;
    1.25 +	border-top: 34px solid #f1f1f1;
    1.26 +}
    1.27 +
    1.28 +/* Accessibility */
    1.29 +
    1.30 +#access {
    1.31 +	position: absolute;
    1.32 +	top: 0px;
    1.33 +	right: 0px;
    1.34 +	text-align: right;
    1.35 +	width: auto;
    1.36 +	margin: 0;
    1.37 +	padding: 4px 4px 4px 20px;
    1.38 +	font-size: 11px;
    1.39 +	font-weight: bold;
    1.40 +}
    1.41 +
    1.42 +#access a {
    1.43 +	text-decoration: none;
    1.44 +	font-weight: bold
    1.45 +}
    1.46 +
    1.47 +#access a:hover, div.plugin_translation a:hover {
    1.48 +	background: transparent;
    1.49 +	color: #b64b22;
    1.50 +}
    1.51 +
    1.52 +#access img {
    1.53 +	vertical-align: middle;
    1.54 +}
    1.55 +
    1.56 +/* Header and title */
    1.57 +
    1.58 +#header {
    1.59 +	/*background: #f0ba08 url(pics/website/header.png) repeat-x top;*/
    1.60 +	background: #351a0a url(images/header-img.png) no-repeat top right;
    1.61 +	color: black;
    1.62 +	width: 100%;
    1.63 +	height: 42px;
    1.64 +	border-top: 1px solid black;
    1.65 +	border-bottom: 1px solid #999;
    1.66 +	margin-bottom: 33px;
    1.67 +}
    1.68 +
    1.69 +#titre {
    1.70 +	position: absolute;
    1.71 +	font-size: 14px;
    1.72 +	font-weight: bolder ;
    1.73 +	left: 180px;
    1.74 +	top: 18px;
    1.75 +}
    1.76 +
    1.77 +#logo {
    1.78 +	position: absolute;
    1.79 +	float: left;
    1.80 +	left: 16px;
    1.81 +	top: -10px;
    1.82 +	width: 200px;
    1.83 +	height: 74px;
    1.84 +}
    1.85 +
    1.86 +/* Page content */
    1.87 +
    1.88 +#content {
    1.89 +	background: white;
    1.90 +	color: black;
    1.91 +	text-align: justify;
    1.92 +	height: auto;
    1.93 +	margin: 0;
    1.94 +	padding: 0px 80px 40px 80px;
    1.95 +}
    1.96 +
    1.97 +#content li, #content-full li {
    1.98 +	line-height: 1.5em;
    1.99 +	text-align: left;
   1.100 +}
   1.101 +
   1.102 +/* Box and block. */
   1.103 +
   1.104 +.infobox {
   1.105 +	margin: 20px 60px;
   1.106 +	padding: 12px;
   1.107 +	background: #f8f8f8;
   1.108 +}
   1.109 +
   1.110 +.infobox img { vertical-align: middle; }
   1.111 +/* .infobox:hover { background-color: #f2b21d; } */
   1.112 +.infobox:hover { background-color: #FBFBFB; }
   1.113 +
   1.114 +.block {
   1.115 +	/*padding-bottom: 35%;*/
   1.116 +	color: black;
   1.117 +	min-height: 200px;
   1.118 +	margin-bottom: 20px;
   1.119 +}
   1.120 +
   1.121 +.block ul {
   1.122 +	list-style-type: none;
   1.123 +	margin: 0;
   1.124 +	padding: 0 20px;
   1.125 +}
   1.126 +
   1.127 +.block_left {
   1.128 +	width: 46%;
   1.129 +	float: left;
   1.130 +	background-color: #eaeaea;
   1.131 +	margin: 4px 2px;
   1.132 +	padding: 0 10px 10px 10px;
   1.133 +}
   1.134 +
   1.135 +.block_right {
   1.136 +	width: 46%;
   1.137 +	float: right;
   1.138 +	background-color: #eaeaea;
   1.139 +	margin: 4px 2px;
   1.140 +	padding: 0 10px 10px 10px;
   1.141 +}
   1.142 +
   1.143 +#block_top {
   1.144 +	color: black;
   1.145 +	background-color: #eaeaea;
   1.146 +	min-height: 180px;
   1.147 +	margin-bottom: 0;
   1.148 +	margin-right: 340px;
   1.149 +	padding: 5px 0 0 10px;
   1.150 +}
   1.151 +
   1.152 +#block_nav {
   1.153 +	width: 300px;
   1.154 +	min-height: 180px;
   1.155 +	float: right;
   1.156 +	background-color: #eaeaea;
   1.157 +	margin: 0;
   1.158 +	padding: 5px 0 0 10px;
   1.159 +}
   1.160 +
   1.161 +.infobox, .block_left, .block_right, #block_top, #block_nav, #footer {
   1.162 +	-moz-border-radius: 8px;
   1.163 +	-webkit-border-radius: 8px;
   1.164 +	border-radius: 8px;
   1.165 +	-moz-box-shadow: 0 1px 3px #666;
   1.166 +	-webkit-box-shadow: 0 1px 3px #666;
   1.167 +	box-shadow: 0 1px 3px #666;
   1.168 +	/* CSS3 transition */
   1.169 +	-webkit-transition-property: background-color;
   1.170 +	-webkit-transition-duration: 2s;
   1.171 +	-moz-transition-property: background-color;
   1.172 +	-moz-transition-duration: 2s;
   1.173 +	transition-property: background-color;
   1.174 +	transition-duration: 2s;
   1.175 +}
   1.176 +
   1.177 +#block_nav {
   1.178 +	font-weight: bold;
   1.179 +}
   1.180 +
   1.181 +#block_nav a {
   1.182 +	text-decoration: none;
   1.183 +}
   1.184 +
   1.185 +#block_nav li a:hover {
   1.186 +	color: #b64b22;
   1.187 +}
   1.188 +
   1.189 +#block_nav ul {
   1.190 +	margin: 0;
   1.191 +	list-style-type: none;
   1.192 +}
   1.193 +
   1.194 +#block_nav h3, #block_top h3 {
   1.195 +	font-size: 110%;
   1.196 +}
   1.197 +
   1.198 +.block_left:hover, .block_right:hover, #block_top:hover,
   1.199 +#block_nav:hover, #footer:hover { 
   1.200 +	background-color: #f8f8f8;
   1.201 +}
   1.202 +
   1.203 +.right_box {
   1.204 +	width: 50%;
   1.205 +	float: right;
   1.206 +}
   1.207 +	
   1.208 +/* Button */
   1.209 +
   1.210 +.button { margin-left: 20px; }
   1.211 +
   1.212 +.button a { 
   1.213 +	background-color: #b64b22;
   1.214 +	color: #ffffff;
   1.215 +	margin-right: 6px;
   1.216 +	padding: 6px 10px;
   1.217 +	font-size: 14px;
   1.218 +	-moz-border-radius: 4px;
   1.219 +	-webkit-border-radius: 4px;
   1.220 +	border-radius: 4px;
   1.221 +	-moz-box-shadow: 0 1px 3px #666;
   1.222 +	-webkit-box-shadow: 0 1px 3px #666;
   1.223 +	box-shadow: 0 1px 3px #666;
   1.224 +}
   1.225 +
   1.226 +.button a:hover, input[type=submit]:hover { 
   1.227 +	background-color: #a3431f;
   1.228 +	color: #ffffff;
   1.229 +}
   1.230 +
   1.231 +/* HTML styles */
   1.232 +
   1.233 +h1 {
   1.234 +	color: #444444;
   1.235 +	background: transparent;
   1.236 +	text-align: left;
   1.237 +	margin: 0;
   1.238 +	font-size: 150%;
   1.239 +	font-weight: bold;
   1.240 +	padding: 0;
   1.241 +}
   1.242 +
   1.243 +h2 {
   1.244 +	color: #b64b22;
   1.245 +	padding: 0;
   1.246 +	margin: 20px 0 0 0;
   1.247 +	font-size: 130%;
   1.248 +	font-weight: bold;
   1.249 +}
   1.250 +
   1.251 +h3 {
   1.252 +	font-weight: bold;
   1.253 +	color: #666666;
   1.254 +	background: transparent;
   1.255 +}
   1.256 +	
   1.257 +h3 img { 
   1.258 +	vertical-align: middle;
   1.259 +	width: 20px;
   1.260 +	height: 20px;
   1.261 +	padding-right: 4px; 
   1.262 +}
   1.263 +
   1.264 +a {
   1.265 +	text-decoration: underline;
   1.266 +	color: #103A5E;
   1.267 +	background: inherit;
   1.268 +}
   1.269 +
   1.270 +a:hover {
   1.271 +	text-decoration: none;
   1.272 +	color: blue;
   1.273 +	background: inherit;
   1.274 +}
   1.275 +
   1.276 +code {
   1.277 +	font-size: 12px;
   1.278 +	color: #669900;
   1.279 +	background: inherit;
   1.280 +}
   1.281 +
   1.282 +tt {
   1.283 +	color: #15EE15;
   1.284 +	background: inherit;
   1.285 +}
   1.286 +
   1.287 +img {
   1.288 +	border: 0pt none;
   1.289 +}
   1.290 +
   1.291 +pre {
   1.292 +	padding: 5px;
   1.293 +	color: black;
   1.294 +	background: #E1E0B0;
   1.295 +}
   1.296 +
   1.297 +pre.script {
   1.298 +	padding: 10px;
   1.299 +	color: black;
   1.300 +	background: #E8E8E8;
   1.301 +	border: 1px inset #606060;
   1.302 +}
   1.303 +
   1.304 +textarea {
   1.305 +	background: #E5E5E5;
   1.306 +	margin-top: 12px;
   1.307 +}
   1.308 +
   1.309 +.year:after {
   1.310 +	/* content: "2007-2011"; */
   1.311 +	content: "2011";
   1.312 +}
   1.313 +
   1.314 +/* Footer */
   1.315 +
   1.316 +#footer {
   1.317 +	margin: 0px 80px 80px 80px;
   1.318 +	padding: 10px;
   1.319 +	background: #eaeaea;
   1.320 +	color: #666666;
   1.321 +	height: 180px;
   1.322 +	clear: both;
   1.323 +	border-radius: 8px;
   1.324 +	-moz-border-radius: 8px;
   1.325 +	-webkit-border-radius: 8px;
   1.326 +	-moz-box-shadow: 0 1px 3px #666;
   1.327 +	-webkit-box-shadow: 0 1px 3px #666;
   1.328 +	box-shadow: 0 1px 3px #666;
   1.329 +}
   1.330 +#footer a {
   1.331 +	background: inherit;
   1.332 +	color: #666666;
   1.333 +}
   1.334 +#footer a:hover {
   1.335 +	background: inherit;
   1.336 +	color: #333333;
   1.337 +}
   1.338 +#footer ul {
   1.339 +	list-style-type: none;
   1.340 +}
   1.341 +#footer li {
   1.342 +	padding: 2px;
   1.343 +}
   1.344 +#footer h4 {
   1.345 +	margin: 0 20px;
   1.346 +	font-size: 125%;
   1.347 +}
   1.348 +
   1.349 +/* the document */
   1.350 +div.dokuwiki div.page {
   1.351 +  text-align: justify;
   1.352 +  background: #ffffff;
   1.353 +}
   1.354 +
   1.355 +div.dokuwiki table {
   1.356 +  font-size: 100%;
   1.357 +}
   1.358 +
   1.359 +div.dokuwiki tr,
   1.360 +div.dokuwiki td,
   1.361 +div.dokuwiki th {
   1.362 +}
   1.363 +
   1.364 +div.dokuwiki img {
   1.365 +  border: 0;
   1.366 +}
   1.367 +
   1.368 +div.dokuwiki p,
   1.369 +div.dokuwiki blockquote,
   1.370 +div.dokuwiki table,
   1.371 +div.dokuwiki pre {
   1.372 +  margin: 0 0 1.0em 0;
   1.373 +}
   1.374 +
   1.375 +div.dokuwiki hr {
   1.376 +  border: 0px;
   1.377 +  border-top: 1px solid __border__;
   1.378 +  text-align: center;
   1.379 +  height: 0px;
   1.380 +}
   1.381 +
   1.382 +div.dokuwiki div.nothing {
   1.383 +  text-align: center;
   1.384 +  margin: 2em;
   1.385 +}
   1.386 +
   1.387 +/* ---------------- forms ------------------------ */
   1.388 +
   1.389 +div.dokuwiki form {
   1.390 +  border: none;
   1.391 +  display: inline;
   1.392 +}
   1.393 +
   1.394 +div.dokuwiki label.block {
   1.395 +  display: block;
   1.396 +  text-align: right;
   1.397 +  font-weight: bold;
   1.398 +  min-height: 20px;
   1.399 +  margin: 0;
   1.400 +}
   1.401 +
   1.402 +div.dokuwiki label.simple {
   1.403 +  display: block;
   1.404 +  text-align: left;
   1.405 +  font-weight: normal;
   1.406 +}
   1.407 +
   1.408 +div.dokuwiki label.block input.edit {
   1.409 +  width: 50%;
   1.410 +}
   1.411 +
   1.412 +div.dokuwiki fieldset {
   1.413 +  width: 300px;
   1.414 +  text-align: center;
   1.415 +  border: 1px solid __border__;
   1.416 +  padding: 0.5em;
   1.417 +  margin: auto;
   1.418 +}
   1.419 +
   1.420 +div.dokuwiki textarea.edit {
   1.421 +  font-family: monospace;
   1.422 +  font-size: 14px;
   1.423 +  color: __text__;
   1.424 +  background-color: __background__;
   1.425 +  border: 1px solid __border__;
   1.426 +  padding: 0.3em 0 0 0.3em;
   1.427 +  width: 100%;
   1.428 +}
   1.429 +
   1.430 +div.dokuwiki input.edit,
   1.431 +div.dokuwiki select.edit {
   1.432 +  font-size: 100%;
   1.433 +  border: 1px solid __border__;
   1.434 +  color: __text__;
   1.435 +  background-color: __background__;
   1.436 +  vertical-align: middle;
   1.437 +  margin: 1px;
   1.438 +  padding: 0.20em 0.3em;
   1.439 +  display: inline;
   1.440 +}
   1.441 +
   1.442 +div.dokuwiki select.edit {
   1.443 +  padding: 0.1em 0;
   1.444 +}
   1.445 +
   1.446 +div.dokuwiki input.missing {
   1.447 +  font-size: 100%;
   1.448 +  border: 1px solid __border__;
   1.449 +  color: __text__;
   1.450 +  background-color: #ffcccc;
   1.451 +  vertical-align: middle;
   1.452 +  margin: 1px;
   1.453 +  padding: 0.20em 0.3em;
   1.454 +  display: inline;
   1.455 +}
   1.456 +
   1.457 +/* disabled style - not understood by IE */
   1.458 +div.dokuwiki textarea.edit[disabled],
   1.459 +div.dokuwiki textarea.edit[readonly],
   1.460 +div.dokuwiki input.edit[disabled],
   1.461 +div.dokuwiki input.edit[readonly],
   1.462 +div.dokuwiki select.edit[disabled] {
   1.463 +  background-color: __background_neu__!important;
   1.464 +  color: __text_neu__!important;
   1.465 +}
   1.466 +
   1.467 +/* edit form */
   1.468 +div.dokuwiki div.toolbar,
   1.469 +div.dokuwiki div#wiki__editbar {
   1.470 +   margin: 2px 0;
   1.471 +   text-align: left;
   1.472 +}
   1.473 +div.dokuwiki div#size__ctl {
   1.474 +   float: right;
   1.475 +   width: 60px;
   1.476 +   height: 2.7em;
   1.477 +}
   1.478 +div.dokuwiki #size__ctl img {
   1.479 +   cursor: pointer;
   1.480 +}
   1.481 +div.dokuwiki div#wiki__editbar div.editButtons {
   1.482 +   float: left;
   1.483 +   padding: 0 1.0em 0.7em 0;
   1.484 +}
   1.485 +div.dokuwiki div#wiki__editbar div.summary {
   1.486 +   float: left;
   1.487 +}
   1.488 +div.dokuwiki .nowrap {
   1.489 +   white-space: nowrap;
   1.490 +}
   1.491 +div.dokuwiki div#draft__status {
   1.492 +  float: right;
   1.493 +  color: __text_alt__;
   1.494 +}
   1.495 +
   1.496 +/* --------- buttons ------------------- */
   1.497 +
   1.498 +
   1.499 +div.dokuwiki input.button,
   1.500 +div.dokuwiki button.button {
   1.501 +  border: 0px solid #eaeaea;
   1.502 +  color: #0F314E;
   1.503 +  background-color: transparent;
   1.504 +  vertical-align: middle;
   1.505 +  text-decoration: none;
   1.506 +  font-size: 12px;
   1.507 +  font-weight: bold;
   1.508 +  cursor: pointer;
   1.509 +  padding: 0;
   1.510 +}
   1.511 +
   1.512 +div.dokuwiki input:hover.button {
   1.513 +  color: #DF8F06;
   1.514 +}
   1.515 +
   1.516 +* html div.dokuwiki input.button,
   1.517 +* html div.dokuwiki button.button {
   1.518 +  height: 24px;
   1.519 +}
   1.520 +
   1.521 +div.dokuwiki div.secedit input.button {
   1.522 +  border: 1px solid #eaeaea;
   1.523 +  color: #3E1220;
   1.524 +  background-color: transparent;
   1.525 +  vertical-align: middle;
   1.526 +  text-decoration: none;
   1.527 +  margin: 0;
   1.528 +  padding: 0;
   1.529 +  font-size: 10px;
   1.530 +  cursor: pointer;
   1.531 +  float: right;
   1.532 +  display: inline;
   1.533 +}
   1.534 +
   1.535 +/* ----------- page navigator ------------- */
   1.536 +
   1.537 +div.dokuwiki div.pagenav {
   1.538 +    margin: 1em 0 0 0;
   1.539 +}
   1.540 +
   1.541 +div.dokuwiki div.pagenav-prev {
   1.542 +    text-align: right;
   1.543 +    float: left;
   1.544 +    width: 49%
   1.545 +}
   1.546 +
   1.547 +div.dokuwiki div.pagenav-next {
   1.548 +    text-align: left;
   1.549 +    float: right;
   1.550 +    width: 49%
   1.551 +}
   1.552 +
   1.553 +/* --------------- Links ------------------ */
   1.554 +
   1.555 +div.dokuwiki a:link,
   1.556 +div.dokuwiki a:visited {
   1.557 +  color: __extern__;
   1.558 +  text-decoration: none;
   1.559 +}
   1.560 +div.dokuwiki a:hover,
   1.561 +div.dokuwiki a:active {
   1.562 +  color: __text__;
   1.563 +  text-decoration: underline;
   1.564 +}
   1.565 +
   1.566 +div.dokuwiki h1 a {
   1.567 +  color: #3E1220 !important;
   1.568 +  text-decoration: none !important;
   1.569 +}
   1.570 +
   1.571 +div.dokuwiki h2 a {
   1.572 +  color: #DF8F06 !important;
   1.573 +  text-decoration: none !important;
   1.574 +  border-left: 10px solid #F3F3F3;
   1.575 +  padding: 4px 0px 4px 4px;
   1.576 +}
   1.577 +
   1.578 +div.dokuwiki h3 a,
   1.579 +div.dokuwiki h4 a,
   1.580 +div.dokuwiki h5 a,
   1.581 +div.dokuwiki a.nolink {
   1.582 +  color: #6c0023 !important;
   1.583 +  text-decoration: none !important;
   1.584 +}
   1.585 +
   1.586 +/* external link */
   1.587 +div.dokuwiki a.urlextern {
   1.588 +  background: transparent url(images/link_icon.gif) 0px 1px no-repeat;
   1.589 +  padding: 1px 0px 1px 16px;
   1.590 +}
   1.591 +
   1.592 +/* windows share */
   1.593 +div.dokuwiki a.windows {
   1.594 +  background: transparent url(images/windows.gif) 0px 1px no-repeat;
   1.595 +  padding: 1px 0px 1px 16px;
   1.596 +}
   1.597 +
   1.598 +/* interwiki link (icon are set by dokuwiki) */
   1.599 +div.dokuwiki a.interwiki {
   1.600 +}
   1.601 +
   1.602 +/* link to some embedded media */
   1.603 +div.dokuwiki a.media {
   1.604 +}
   1.605 +
   1.606 +div.dokuwiki a.urlextern:link,
   1.607 +div.dokuwiki a.windows:link,
   1.608 +div.dokuwiki a.interwiki:link {
   1.609 +  color: __extern__;
   1.610 +}
   1.611 +
   1.612 +div.dokuwiki a.urlextern:visited,
   1.613 +div.dokuwiki a.windows:visited,
   1.614 +div.dokuwiki a.interwiki:visited {
   1.615 +  color: purple;
   1.616 +}
   1.617 +div.dokuwiki a.urlextern:hover,
   1.618 +div.dokuwiki a.urlextern:active,
   1.619 +div.dokuwiki a.windows:hover,
   1.620 +div.dokuwiki a.windows:active,
   1.621 +div.dokuwiki a.interwiki:hover,
   1.622 +div.dokuwiki a.interwiki:active {
   1.623 +  color: __text__;
   1.624 +}
   1.625 +
   1.626 +/* email link */
   1.627 +div.dokuwiki a.mail {
   1.628 +  background: transparent url(images/mail_icon.gif) 0px 1px no-repeat;
   1.629 +  padding: 1px 0px 1px 16px;
   1.630 +}
   1.631 +
   1.632 +/* existing wikipage */
   1.633 +div.dokuwiki a.wikilink1 {
   1.634 +  color: #0F314E;
   1.635 +  text-decoration: underline;
   1.636 +}
   1.637 +div.dokuwiki a.wikilink1:hover {
   1.638 +  text-decoration: none;
   1.639 +  color: blue;
   1.640 +}
   1.641 +
   1.642 +/* not existing wikipage */
   1.643 +div.dokuwiki a.wikilink2 {
   1.644 +  color: __missing__ !important;
   1.645 +  text-decoration: none !important;
   1.646 +  border-bottom: dashed 1px __missing__ !important;
   1.647 +}
   1.648 +
   1.649 +/* ------------- Page elements ----------------- */
   1.650 +
   1.651 +div.dokuwiki div.preview {
   1.652 +  background-color: __background_neu__;
   1.653 +  margin: 0 0 0 2em;
   1.654 +  padding: 4px;
   1.655 +  border: 1px dashed __text__;
   1.656 +}
   1.657 +
   1.658 +div.dokuwiki div.breadcrumbs {
   1.659 +  background-color: #f1f1f1;
   1.660 +  color: __text_neu__;
   1.661 +  font-size: 85%;
   1.662 +  padding: 1px 0px 1px 18px;
   1.663 +  margin: 0px 100px 0px 100px;
   1.664 +}
   1.665 +
   1.666 +div.dokuwiki span.user {
   1.667 +  color: __text_other__;
   1.668 +  font-size: 90%;
   1.669 +}
   1.670 +
   1.671 +div.dokuwiki li.minor {
   1.672 +  color: __text_neu__;
   1.673 +  font-style: italic;
   1.674 +}
   1.675 +
   1.676 +/* embedded images */
   1.677 +div.dokuwiki img.media {
   1.678 +  margin: 3px;
   1.679 +}
   1.680 +
   1.681 +div.dokuwiki img.medialeft {
   1.682 +  border: 0;
   1.683 +  float: left;
   1.684 +  margin: 0 1.5em 0 0;
   1.685 +}
   1.686 +
   1.687 +div.dokuwiki img.mediaright {
   1.688 +  border: 0;
   1.689 +  float: right;
   1.690 +  margin: 0 0 0 1.5em;
   1.691 +}
   1.692 +
   1.693 +div.dokuwiki img.mediacenter {
   1.694 +  border: 0;
   1.695 +  display: block;
   1.696 +  margin: 0 auto;
   1.697 +}
   1.698 +
   1.699 +/* smileys */
   1.700 +div.dokuwiki img.middle {
   1.701 +  vertical-align: middle;
   1.702 +}
   1.703 +
   1.704 +div.dokuwiki acronym {
   1.705 +  cursor: help;
   1.706 +  border-bottom: 1px dotted __text__;
   1.707 +}
   1.708 +
   1.709 +/* general headline setup */
   1.710 +div.dokuwiki h1,
   1.711 +div.dokuwiki h2,
   1.712 +div.dokuwiki h3,
   1.713 +div.dokuwiki h4,
   1.714 +div.dokuwiki h5 {
   1.715 +    background-color: transparent;
   1.716 +    clear: left;
   1.717 +}
   1.718 +
   1.719 +/* unordered lists */
   1.720 +div.dokuwiki ul {
   1.721 +  line-height: 1.5em;
   1.722 +  list-style-type: square;
   1.723 +  list-style-image: none;
   1.724 +  margin: 0 0 0.5em 1.5em;
   1.725 +  color: __text_alt__;
   1.726 +}
   1.727 +
   1.728 +/* ordered lists */
   1.729 +div.dokuwiki ol {
   1.730 +  line-height: 1.5em;
   1.731 +  list-style-image: none;
   1.732 +  margin: 0 0 0.5em 1.5em;
   1.733 +  color: __text_alt__;
   1.734 +  font-weight: bold;
   1.735 +}
   1.736 +
   1.737 +/* the list items overriding the ul/ol definition */
   1.738 +div.dokuwiki .li {
   1.739 +  color: __text__;
   1.740 +  font-weight: normal;
   1.741 +}
   1.742 +
   1.743 +div.dokuwiki ol {list-style-type: decimal}
   1.744 +div.dokuwiki ol ol {list-style-type: upper-roman}
   1.745 +div.dokuwiki ol ol ol {list-style-type: lower-alpha}
   1.746 +div.dokuwiki ol ol ol ol {list-style-type: lower-greek}
   1.747 +
   1.748 +div.dokuwiki li.open {
   1.749 +  list-style-image: url(images/open.gif);
   1.750 +    /*list-style-type: circle;*/
   1.751 +}
   1.752 +
   1.753 +div.dokuwiki li.closed {
   1.754 +  list-style-image: url(images/closed.gif);
   1.755 +    /*list-style-type: disc;*/
   1.756 +}
   1.757 +
   1.758 +div.dokuwiki blockquote {
   1.759 +  border-left: 2px solid __border__;
   1.760 +  padding-left: 3px;
   1.761 +}
   1.762 +
   1.763 +div.dokuwiki pre {
   1.764 +  font-size: 100%;
   1.765 +  padding: 5px;
   1.766 +  color: black;
   1.767 +  background: #E1E0B0;
   1.768 +  border: 0;
   1.769 +  overflow: auto;
   1.770 +}
   1.771 +
   1.772 +/* code blocks by indention */
   1.773 +div.dokuwiki pre.pre {
   1.774 +  background-color: __background_other__;
   1.775 +}
   1.776 +
   1.777 +/* code blocks by code tag */
   1.778 +div.dokuwiki pre.code {
   1.779 +  -moz-border-radius: 4px;
   1.780 +  -webkit-border-radius: 4px;
   1.781 +  background-color: #e6e6be;
   1.782 +  color: black;
   1.783 +  padding: 5px ;
   1.784 +  border: 0;
   1.785 +}
   1.786 +
   1.787 +/* inline code words */
   1.788 +div.dokuwiki code {
   1.789 +  font-size: 120%;
   1.790 +   
   1.791 +  
   1.792 +}
   1.793 +
   1.794 +/* code blocks by file tag */
   1.795 +div.dokuwiki pre.file {
   1.796 +  background-color: __background_alt__;
   1.797 +}
   1.798 +
   1.799 +/* inline tables */
   1.800 +div.dokuwiki table.inline {
   1.801 +  background-color: __background__;
   1.802 +  border-spacing: 0px;
   1.803 +  border-collapse: collapse;
   1.804 +}
   1.805 +
   1.806 +div.dokuwiki table.inline th {
   1.807 +  padding: 3px;
   1.808 +  border: 1px solid __border__;
   1.809 +  background-color: __background_alt__;
   1.810 +}
   1.811 +
   1.812 +div.dokuwiki table.inline td {
   1.813 +  padding: 3px;
   1.814 +  border: 1px solid __border__;
   1.815 +}
   1.816 +
   1.817 +/* ---------- table of contents ------------------- */
   1.818 +
   1.819 +div.dokuwiki div.toc {
   1.820 +  margin: 1.2em 0 0 2em;
   1.821 +  float: right;
   1.822 +  width: 200px;
   1.823 +  font-size: 80%;
   1.824 +  clear: both;
   1.825 +}
   1.826 +
   1.827 +div.dokuwiki div.tocheader {
   1.828 +  border: 1px solid __border__;
   1.829 +  background-color: __background_alt__;
   1.830 +  text-align: left;
   1.831 +  font-weight: bold;
   1.832 +  padding: 3px;
   1.833 +  margin-bottom: 2px;
   1.834 +}
   1.835 +
   1.836 +div.dokuwiki span.toc_open,
   1.837 +div.dokuwiki span.toc_close {
   1.838 +    border: 0.4em solid __background_alt__;
   1.839 +    float: right;
   1.840 +    display: block;
   1.841 +    margin: 0.4em 3px 0 0;
   1.842 +}
   1.843 +
   1.844 +div.dokuwiki span.toc_open span,
   1.845 +div.dokuwiki span.toc_close span {
   1.846 +    display: none;
   1.847 +}
   1.848 +
   1.849 +div.dokuwiki span.toc_open {
   1.850 +    margin-top: 0.4em;
   1.851 +    border-top: 0.4em solid __text__;
   1.852 +}
   1.853 +
   1.854 +div.dokuwiki span.toc_close {
   1.855 +    margin-top: 0;
   1.856 +    border-bottom: 0.4em solid __text__;
   1.857 +}
   1.858 +
   1.859 +div.dokuwiki #toc__inside {
   1.860 +  border: 1px solid __border__;
   1.861 +  background-color: __background__;
   1.862 +  text-align: left;
   1.863 +  padding: 0.5em 0 0.7em 0;
   1.864 +}
   1.865 +
   1.866 +div.dokuwiki ul.toc {
   1.867 +  list-style-type: none;
   1.868 +  list-style-image: none;
   1.869 +  line-height: 1.2em;
   1.870 +  padding-left: 1em;
   1.871 +  margin: 0;
   1.872 +}
   1.873 +
   1.874 +div.dokuwiki ul.toc li {
   1.875 +  background: transparent url(images/tocdot2.gif) 0 0.6em no-repeat;
   1.876 +  padding-left: 0.4em;
   1.877 +}
   1.878 +
   1.879 +div.dokuwiki ul.toc li.clear {
   1.880 +  background-image: none;
   1.881 +  padding-left: 0.4em;
   1.882 +}
   1.883 +
   1.884 +div.dokuwiki a.toc:link,
   1.885 +div.dokuwiki a.toc:visited {
   1.886 +  color: __extern__;
   1.887 +}
   1.888 +
   1.889 +div.dokuwiki a.toc:hover,
   1.890 +div.dokuwiki a.toc:active {
   1.891 +  color: __text__;
   1.892 +}
   1.893 +
   1.894 +/* ---------------------------- Diff rendering --------------------------*/
   1.895 +div.dokuwiki table.diff {
   1.896 +  background-color: __background__;
   1.897 +  width: 100%;
   1.898 +}
   1.899 +div.dokuwiki td.diff-blockheader {
   1.900 +  font-weight: bold;
   1.901 +}
   1.902 +div.dokuwiki table.diff th {
   1.903 +  border-bottom: 1px solid __border__;
   1.904 +  font-size: 120%;
   1.905 +  width: 50%;
   1.906 +  font-weight: normal;
   1.907 +  text-align: left;
   1.908 +}
   1.909 +div.dokuwiki table.diff td {
   1.910 +  font-family: monospace;
   1.911 +  font-size: 100%;
   1.912 +}
   1.913 +div.dokuwiki td.diff-addedline {
   1.914 +  background-color: #ddffdd;
   1.915 +}
   1.916 +div.dokuwiki td.diff-deletedline {
   1.917 +    background-color: #ffffbb;
   1.918 +}
   1.919 +div.dokuwiki td.diff-context {
   1.920 +    background-color: __background_neu__;
   1.921 +}
   1.922 +div.dokuwiki table.diff td.diff-addedline strong,
   1.923 +div.dokuwiki table.diff td.diff-deletedline strong {
   1.924 +    color: red;
   1.925 +}
   1.926 +
   1.927 +/* --------------------- footnotes -------------------------------- */
   1.928 +
   1.929 +div.dokuwiki div.footnotes {
   1.930 +  clear: both;
   1.931 +  border-top: 1px solid __border__;
   1.932 +  padding-left: 1em;
   1.933 +  margin-top: 1em;
   1.934 +}
   1.935 +
   1.936 +div.dokuwiki div.fn {
   1.937 +  font-size: 90%;
   1.938 +}
   1.939 +
   1.940 +div.dokuwiki a.fn_bot {
   1.941 +  font-weight: bold;
   1.942 +}
   1.943 +
   1.944 +/* insitu-footnotes */
   1.945 +div.insitu-footnote {
   1.946 +  font-size: 80%;
   1.947 +  line-height: 1.2em;
   1.948 +  border: 1px solid __border__;
   1.949 +  background-color: __background_other__;
   1.950 +  text-align: left;
   1.951 +  padding: 4px;
   1.952 +  max-width: 40%;    /* IE's width is handled in javascript */
   1.953 +}
   1.954 +
   1.955 +/* overcome IE issue with one line code or file boxes which require h. scrolling */
   1.956 +* html .insitu-footnote pre.code,
   1.957 +* html .insitu-footnote pre.file {
   1.958 +  padding-bottom: 18px;
   1.959 +}
   1.960 +
   1.961 +/* --------------- search result formating --------------- */
   1.962 +div.dokuwiki .search_result {
   1.963 +  margin-bottom: 6px;
   1.964 +  padding: 0 10px 0 30px;
   1.965 +}
   1.966 +
   1.967 +div.dokuwiki .search_snippet {
   1.968 +  color: __text_other__;
   1.969 +  font-size: 12px;
   1.970 +  margin-left: 20px;
   1.971 +}
   1.972 +
   1.973 +div.dokuwiki .search_sep {
   1.974 +  color: __text__;
   1.975 +}
   1.976 +
   1.977 +div.dokuwiki .search_hit {
   1.978 +  color: __text__;
   1.979 +  background-color: __highlight__;
   1.980 +}
   1.981 +div.dokuwiki strong.search_hit {
   1.982 +  font-weight: normal;
   1.983 +}
   1.984 +
   1.985 +div.dokuwiki div.search_quickresult {
   1.986 +  margin: 0 0 15px 30px;
   1.987 +  padding: 0 10px 10px 0;
   1.988 +  border-bottom: 1px dashed __border__;
   1.989 +}
   1.990 +div.dokuwiki div.search_quickresult h3 {
   1.991 +  margin: 0 0 1.0em 0;
   1.992 +  font-size: 1em;
   1.993 +  font-weight: bold;
   1.994 +}
   1.995 +
   1.996 +div.dokuwiki ul.search_quickhits {
   1.997 +  margin: 0 0 0.5em 1.0em;
   1.998 +}
   1.999 +
  1.1000 +div.dokuwiki ul.search_quickhits li {
  1.1001 +  margin: 0 1.0em 0 1.0em;
  1.1002 +  float:left;
  1.1003 +  width: 30%;
  1.1004 +}
  1.1005 +
  1.1006 +/* ------------------ Additional ---------------------- */
  1.1007 +
  1.1008 +div.footerinc {
  1.1009 +    text-align: left;
  1.1010 +    margin: 10px 80px;
  1.1011 +}
  1.1012 +.footerinc a img {
  1.1013 +    opacity: 0.5;
  1.1014 +    border: 0;
  1.1015 +}
  1.1016 +
  1.1017 +.footerinc a:hover img {
  1.1018 +    opacity: 1;
  1.1019 +}
  1.1020 +
  1.1021 +/* ---------- AJAX quicksearch ----------- */
  1.1022 +
  1.1023 +div.dokuwiki div.ajax_qsearch {
  1.1024 +  position: absolute;
  1.1025 +  right: 237px;;
  1.1026 +  width: 200px;
  1.1027 +  opacity: 0.9;
  1.1028 +  display: none;
  1.1029 +  font-size: 80%;
  1.1030 +  line-height: 1.2em;
  1.1031 +  border: 1px solid __border__;
  1.1032 +  background-color: __background_other__;
  1.1033 +  text-align: left;
  1.1034 +  padding: 4px;
  1.1035 +}
  1.1036 +
  1.1037 +/* --------- Toolbar -------------------- */
  1.1038 +button.toolbutton {
  1.1039 +  background-color: transparent;
  1.1040 +  padding: 0px;
  1.1041 +  margin: 0 1px 0 0;
  1.1042 +  border: 1px solid __border__;
  1.1043 +  cursor: pointer;
  1.1044 +}
  1.1045 +
  1.1046 +div.picker {
  1.1047 +  width: 250px;
  1.1048 +  border: 1px solid __border__;
  1.1049 +  background-color: __background_alt__;
  1.1050 +}
  1.1051 +
  1.1052 +button.pickerbutton {
  1.1053 +  padding: 0px;
  1.1054 +  margin: 0 1px 1px 0;
  1.1055 +  border: 0;
  1.1056 +  background-color: transparent;
  1.1057 +  font-size: 80%;
  1.1058 +  cursor: pointer;
  1.1059 +}
  1.1060 +
  1.1061 +/* ---------------  Image Details  ----------------- */
  1.1062 +
  1.1063 +div.dokuwiki div.img_big {
  1.1064 +  float: left;
  1.1065 +  margin-right: 0.5em;
  1.1066 +}
  1.1067 +
  1.1068 +div.dokuwiki dl.img_tags dt {
  1.1069 +  font-weight: bold;
  1.1070 +  background-color: __background_alt__;
  1.1071 +}
  1.1072 +div.dokuwiki dl.img_tags dd {
  1.1073 +  background-color: __background_neu__;
  1.1074 +}
  1.1075 +
  1.1076 +div.dokuwiki div.imagemeta {
  1.1077 +  color: __text_neu__;
  1.1078 +  font-size: 70%;
  1.1079 +  line-height: 95%;
  1.1080 +}
  1.1081 +
  1.1082 +div.dokuwiki div.imagemeta img.thumb {
  1.1083 +  float:left;
  1.1084 +  margin-right: 0.1em;
  1.1085 +}
  1.1086 +
  1.1087 +div.notify { 
  1.1088 +	background: #FFCE21;
  1.1089 +	color: #222;
  1.1090 +	border: 1px solid #000;
  1.1091 +	font-size: 90%;
  1.1092 +	margin: 0;
  1.1093 +	padding: 4px;
  1.1094 +	-moz-border-radius: 4px;
  1.1095 +	-webkit-border-radius: 4px;
  1.1096 +	border-radius: 4px;
  1.1097 +	position: absolute;
  1.1098 +	top: 43px;
  1.1099 +	right: 24px;
  1.1100 +	width: 600px;
  1.1101 +}
  1.1102 +
  1.1103 +#access div.notify a { text-decoration: underline; }
  1.1104 +#access div.notify a:hover { text-decoration: none; }