1. Import
This commit is contained in:
132
html/lib/project/css/navigation.css.php
Normal file
132
html/lib/project/css/navigation.css.php
Normal file
@@ -0,0 +1,132 @@
|
||||
<?php
|
||||
/*=======================================================================
|
||||
*
|
||||
* navigation.css.php
|
||||
*
|
||||
* Autor: Marc Vollmann
|
||||
*
|
||||
=======================================================================*/
|
||||
|
||||
|
||||
// Get user agent info
|
||||
$hideFocus = "outline:none;";
|
||||
if (!$isFirefox) {
|
||||
$hideFocus = "hidefocus:true;";
|
||||
}
|
||||
|
||||
// (D)HTML
|
||||
function htmlDivLineSpacer($height = "10px", $width = "", $clear = "", $background = "") {
|
||||
global $constMenuBackground;
|
||||
if ($width == "") : $width = "100%"; endif;
|
||||
return "<div style=\"width:" . $width . "; height:" . $height . ";" . ($clear != "" ? "clear:" . $clear . ";" : "") . ($background != "" ? "background:" . $constMenuBackground[$background] . ";" : "") . "\"> </div>";
|
||||
}
|
||||
|
||||
function setStyleHtmlDiv($width = "200px", $float = "", $height = "") {
|
||||
return "style=\"width:" . $width . "; " . ($height != "" ? "height:" . $height . "; " : "") . ($float != "" ? "float:" . $float . ";" : "") . "\"";
|
||||
}
|
||||
|
||||
$htmlDivFixedWidth = "style=\"float:left; width:200px;\"";
|
||||
$htmlDivFixedWidth_0300 = "style=\"float:left; width:300px;\"";
|
||||
$htmlDivFixedWidth_0400 = "style=\"float:left; width:400px;\"";
|
||||
|
||||
?>
|
||||
|
||||
body
|
||||
{ font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 8pt; background-color: <?php echo $constBackground ?>;
|
||||
margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.menu
|
||||
{ width:100%; height:65px;
|
||||
font-size:8pt; font-family:Helvetica,Arial; font-style:normal; font-weight:normal;
|
||||
background:#CDD9FD;
|
||||
}
|
||||
.menu_reduced
|
||||
{ width:100%; height:21px;
|
||||
font-size:8pt; font-family:Helvetica,Arial; font-style:normal; font-weight:normal;
|
||||
background:#CDD9FD;
|
||||
}
|
||||
|
||||
.menu_item_00
|
||||
{ width:<?php echo $constMenuItemWidth ?>; height:21px;
|
||||
font-size:8pt; font-family:Helvetica,Arial; font-style:normal; font-weight:normal;
|
||||
}
|
||||
.menu_item_01
|
||||
{ width:<?php echo $constMenuItemWidth ?>; height:21px;
|
||||
font-size:8pt; font-family:Helvetica,Arial; font-style:normal; font-weight:normal;
|
||||
}
|
||||
.menu_item_02
|
||||
{ width:<?php echo $constMenuItemWidth ?>; height:21px;
|
||||
font-size:8pt; font-family:Helvetica,Arial; font-style:normal; font-weight:normal;
|
||||
}
|
||||
.menu_item_03
|
||||
{ width:<?php echo $constMenuItemWidth ?>; height:21px;
|
||||
font-size:8pt; font-family:Helvetica,Arial; font-style:normal; font-weight:normal;
|
||||
}
|
||||
|
||||
.logo
|
||||
{ float:left; width:121px; height:65px; border:0px;
|
||||
background:#97bcFF;
|
||||
}
|
||||
|
||||
.pageTitel
|
||||
{ height:21px; border:0px;
|
||||
font-size:14pt; font-family:Helvetica,Arial; font-style:normal; font-weight:normal;
|
||||
background:#CDD9FD; color:#1b12b9;
|
||||
}
|
||||
|
||||
.menu_00
|
||||
{ float:left; width:<?php echo $constMenuColWidth ?>; height:65px; background:<?php echo $constMenuBackground[0] ?>; color:<?php echo $constMenuColor[0] ?>; }
|
||||
.menu_01
|
||||
{ float:left; width:<?php echo $constMenuColWidth ?>; height:65px; background:<?php echo $constMenuBackground[1] ?>; color:<?php echo $constMenuColor[1] ?>; }
|
||||
.menu_02
|
||||
{ float:left; width:<?php echo $constMenuColWidth ?>; height:65px; background:<?php echo $constMenuBackground[2] ?>; color:<?php echo $constMenuColor[2] ?>; display:none; }
|
||||
.menu_03
|
||||
{ float:left; width:<?php echo $constMenuColWidth ?>; height:65px; background:<?php echo $constMenuBackground[3] ?>; color:<?php echo $constMenuColor[3] ?>; display:none; }
|
||||
|
||||
.reduced_menu_00
|
||||
{ float:left; width:<?php echo $constMenuColWidth ?>; height:21px; background:<?php echo $constMenuBackground[0] ?>; color:<?php echo $constMenuColor[0] ?>; }
|
||||
|
||||
.a_menu:link { text-decoration:none; font-weight:bold; color:#FFFFFF; <?php echo $hideFocus ?> }
|
||||
.a_menu:visited { text-decoration:none; font-weight:bold; color:#FFFFFF; <?php echo $hideFocus ?> }
|
||||
.a_menu:hover { text-decoration:none; font-weight:bold; color:#DDDDDD; <?php echo $hideFocus ?> }
|
||||
.a_menu:active { text-decoration:none; font-weight:bold; color:#FFFFFF; <?php echo $hideFocus ?> }
|
||||
.a_menu:focus { text-decoration:none; font-weight:bold; color:#DDDDDD; <?php echo $hideFocus ?> }
|
||||
|
||||
.maincontent
|
||||
{ width:100%; height:100%;
|
||||
font-size:10pt; font-family:Verdana,Helvetica,Arial; font-style:normal; font-weight:normal;
|
||||
background:<?php echo $constMaincontentBackground ?>;
|
||||
margin-left:10px;
|
||||
}
|
||||
|
||||
.maincontent2
|
||||
{ width:100%; height:100%;
|
||||
font-size:8pt; font-family:Verdana,Helvetica,Arial; font-style:normal; font-weight:normal;
|
||||
background:<?php echo $constMaincontent2Background ?>;
|
||||
margin-left:10px;
|
||||
}
|
||||
|
||||
.page_headline
|
||||
{ width:100%; height:25px;
|
||||
font-size:14pt; font-family:Helvetica,Arial; font-style:normal; font-weight:normal;
|
||||
vertical-align:middle;
|
||||
background:<?php echo $constPageHeadlineBgCol ?>; color:#FFFFFF;
|
||||
}
|
||||
|
||||
.tickerOut
|
||||
{ width:100%; height:100%;
|
||||
font-size:10pt; font-family:Verdana,Helvetica,Arial; font-style:normal; font-weight:bold;
|
||||
vertical-align:middle;
|
||||
background:<?php echo $constTickerBgCol ?>; color:#1b12b9;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user