Files
Jugendrechner/r41/luxembourg/de/dain/css/custom.css.php
2026-03-18 15:30:18 +01:00

165 lines
3.7 KiB
PHP

<?php
/**
* Include individual customer settings
*/
$dir = "";
if(isset($_POST['dir'])) $dir = $_POST['dir'];
if(isset($_GET['dir'])) $dir = $_GET['dir'];
file_exists("../../".$dir."/settings/settings.inc.php") ? require_once("../../".$dir."/settings/settings.inc.php") : die('Keine Settings-Datei im Ordner "'.$dir.'" vorhanden!');
header("Content-type: text/css");
echo <<<CSS
/* Insert custom CSS */
html {
font-family: "Roboto";
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
color: #202020;
font-family: "Roboto";
font-style: normal;
font-weight: 400;
font-size: 15px;
}
h1, h2, h3, h4, h5, h6, .h3, .h4, .h5, legend {
color: #202020;
font-family: "Roboto Slab",serif;
font-style: normal;
font-weight: 700;
line-height: 1.2;
}
strong, b, .alert .alert-link, label, th, .nav-tabs>li, .lead {
font-family: "Roboto", sans-serif;
font-weight: 700;
font-style: normal;
}
.not-bold, .btn, .checkbox label, .radio label {
font-family: "Roboto";
font-style: normal;
font-weight: 400;
}
header {
background-color: rgba(255,255,255,1);
height: 110px;
margin-top:0px;
padding-top:0px;
border:0px;
-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.65);
-moz-box-shadow: 0 0 20px 0 rgba(0,0,0,.65);
box-shadow: 0 0 20px 0 rgba(0,0,0,.65);
}
#pager-header-col-1 {
float:right !important;
margin-top:20px;
}
@media screen and (max-width:550px) {
.pager-header h1 a {
font-size:50%;
line-height:1;
}
}
.pager-header h1 a {
color:#202020;
}
#pager-header-col-1 img#logo-co2rechner {
text-align:left !important;
}
.pager-header h2 {
color:#202020;
}
#pager-header-col-2 {
float:left !important;
}
#logo-client {
max-width: 215px;
}
#logo-client.pull-right {
float:left !important;
}
.nav-tabs {
border-bottom: 10px solid #6f850a;
}
.nav-tabs li {
margin-bottom:0px;
}
.nav-tabs li.active a {
background: #6f850a;
color: #fff;
border:none;
}
.nav-tabs>li>a, .nav-tabs>li>a:hover, .nav-tabs>li.active>a:hover {
border:none;
}
.nav-tabs li.active:before {
}
.nav-tabs>li>a:hover {
background-color:#EAE9E4;
}
.gradient {
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+30,EAE9E4+100 */
background: #ffffff; /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIzMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZjBmMGYwIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
background: -moz-linear-gradient(top, #ffffff 30%, #EAE9E4 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ffffff 30%,#EAE9E4 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ffffff 30%,#EAE9E4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#EAE9E4',GradientType=0 ); /* IE6-8 */
}
.badge {
background-color:#EAE9E4;
}
.uba-icons-large {
display:none;
}
.uba-icons-small {
display:none;
}
.tip-text {
color: #adc50d;
}
.tip-hr {
border-color: #adc50d;
}
.tip-bg {
background-color: #adc50d;
margin-top:15px;
margin-bottom:15px;
}
CSS;
?>