html, body {
width: 100%;
height: 100%;
}
html, body, div {
margin: 0;
border: 0;
padding: 0;
}
body {
background-color: #cdf; /* Hintergrundfarbe statt -bild! */
overflow: hidden; /* Scrollbalken im Fenster unterbinden */
/* fontnormal: */
font-family: tahoma, arial, verdana, helvetica, sans-serif;
font-size: 101%;
color: #000;
}
#aufgaben {
position: absolute;
top: 31px; /* Abstand zum oberen Fensterrand */
left: 261px; /* Abstand zum linken Fensterrand */
bottom: 5px; /* Abstand zum unteren Fensterrand */
right: 5px; /* Abstand zum rechten Fensterrand */
}
* html #aufgaben {
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
border-top-width: 31px; /* = Rand oben */
border-left-width: 261px; /* = Spaltenbreite links + Ränder */
border-bottom-width: 5px; /* = Rand unten */
border-right-width: 5px; /* = Rand rechts */
border-style: solid;
border-color: #cdf; /* = Hintergrundfarbe (BODY) */
}
#uebersicht {
position: absolute;
top: 31px; /* Abstand zum oberen Fensterrand */
left: 5px; /* Abstand zum linken Fensterrand */
bottom: 5px; /* Abstand zum unteren Fensterrand */
width: 252px; /* Blockbreite */
background-color: #cdf;
z-index: 1;
}
* html #uebersicht {
top: 0;
height: 100%;
border-top-width: 31px; /* = Rand oben */
border-left-width: 0;
border-bottom-width: 5px; /* = Rand unten */
border-right-width: 0;
border-style: solid;
border-color: #cdf; /* = Hintergrundfarbe (BODY) */
}
#headerbarR {
position: absolute;
top: 5px;
left: 261px;
right: 5px;
height: 26px;
z-Index: 2;
}
* html #headerbarR {
left: 0;
right: 0;
width: 100%;
border-top-width: 0;
border-left-width: 261px; /* = Rand links */
border-bottom-width: 0;
border-right-width: 5px; /* = Rand rechts */
border-style: solid;
border-color: #cdf; /* = Hintergrundfarbe (BODY) */
}
#headerbarL {
position: absolute;
top: 5px;
left: 5px;
width: 252px;
height: 26px;
z-Index: 3;
}
.inhaltDiv {
border: 1px solid #002D96;
border-top-width: 0;
height: 100%;
overflow: auto; /* Scrollbalken, falls notwendig */
background-color: #fff;
}
#headerbarR .inhaltDiv, #headerbarL .inhaltDiv {
line-height: 24px;
border-top-width: 1px;
border-bottom-width: 0;
padding-left: 0.3em;
background-image: url(images/bg_headerbar_1x24.gif);
background-repeat: repeat-x;
font-family: arial, tahoma, verdana, helvetica, sans-serif;
font-size: 17px;
font-weight: bold;
color: #fff;
}