/*
* Filename.....:infobox.css
* Aufgabe......:Stylesheet for PHP class "infobox"
* Erstellt am..:Montag,7. März 2005
* _ __ _ _
* ||| | |/ / (_) | Wirtschaftsinformatiker IHK
* \. ./| ' / _ __ _| |_ ___ www.ingoknito.de
* - ^ -| < | '_ \| | __/ _ \
* / - \| . \| | | | | || (_) | Peter Klauer
* ||| |_|\_\_| |_|_|\__\___/ 06131-651236
* mailto.......:knito@knito.de
*
* Changes:
* 2005-03-27: Deleted old style definitions for infobox table.
* 2005-03-15: Change: set div.infobox::left to -10000px to move it out of the way and to not display
* the box at position 0,0 anymore after a infobox-link was clicked and the new page
* also uses infoboxes (and the new pages loads slow and the mouse is still hovering
* over an infobox link, phew!).
* 2006-03-07: New: div.infobox, div.infoboxbody and div.infoboxcaption added for new js::maketip()
* Old js.maketip() generated a table, new js.maketip() generates a div.
*/
div.infobox{
background: #000084;
color:#000000;
font:10pt sans-serif;
left:-10000px;
position:absolute;
top:0px;
visibility:hidden;
z-index: 99;
}
div.infoboxbody{
background: #e0e0e0;
color:#000000;
font:10pt sans-serif;
margin:2px;
padding:2px
}
div.infoboxcaption{
color:#FFFFFF;
background-color:transparent;
font:bold 10pt sans-serif;
margin:2px;
text-align:center
}
|