initial commit

This commit is contained in:
2026-03-18 15:30:18 +01:00
commit 1db0cbecc7
1705 changed files with 626031 additions and 0 deletions

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,246 @@
/*! =========================================================
* bootstrap-slider.js
*
* Maintainers:
* Kyle Kemp
* - Twitter: @seiyria
* - Github: seiyria
* Rohit Kalkur
* - Twitter: @Rovolutionary
* - Github: rovolution
*
* =========================================================
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ========================================================= */
.slider {
display: inline-block;
vertical-align: middle;
position: relative;
}
.slider.slider-horizontal {
width: 210px;
height: 20px;
}
.slider.slider-horizontal .slider-track {
height: 10px;
width: 100%;
margin-top: -5px;
top: 50%;
left: 0;
}
.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high {
height: 100%;
top: 0;
bottom: 0;
}
.slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
margin-left: -10px;
margin-top: -5px;
}
.slider.slider-horizontal .slider-tick.triangle,
.slider.slider-horizontal .slider-handle.triangle {
border-width: 0 10px 10px 10px;
width: 0;
height: 0;
border-bottom-color: #0480be;
margin-top: 0;
}
.slider.slider-horizontal .slider-tick-label-container {
white-space: nowrap;
margin-top: 20px;
}
.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
padding-top: 4px;
display: inline-block;
text-align: center;
}
.slider.slider-vertical {
height: 210px;
width: 20px;
}
.slider.slider-vertical .slider-track {
width: 10px;
height: 100%;
margin-left: -5px;
left: 50%;
top: 0;
}
.slider.slider-vertical .slider-selection {
width: 100%;
left: 0;
top: 0;
bottom: 0;
}
.slider.slider-vertical .slider-track-low,
.slider.slider-vertical .slider-track-high {
width: 100%;
left: 0;
right: 0;
}
.slider.slider-vertical .slider-tick,
.slider.slider-vertical .slider-handle {
margin-left: -5px;
margin-top: -10px;
}
.slider.slider-vertical .slider-tick.triangle,
.slider.slider-vertical .slider-handle.triangle {
border-width: 10px 0 10px 10px;
width: 1px;
height: 1px;
border-left-color: #0480be;
margin-left: 0;
}
.slider.slider-disabled .slider-handle {
background-image: -webkit-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
background-image: -o-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
}
.slider.slider-disabled .slider-track {
background-image: -webkit-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
background-image: -o-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
cursor: not-allowed;
}
.slider input {
display: none;
}
.slider .tooltip.top {
margin-top: -36px;
}
.slider .tooltip-inner {
white-space: nowrap;
}
.slider .hide {
display: none;
}
.slider-track {
position: absolute;
cursor: pointer;
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
background-image: -o-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
border-radius: 4px;
}
.slider-selection {
position: absolute;
background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-radius: 4px;
}
.slider-selection.tick-slider-selection {
background-image: -webkit-linear-gradient(top, #89cdef 0%, #81bfde 100%);
background-image: -o-linear-gradient(top, #89cdef 0%, #81bfde 100%);
background-image: linear-gradient(to bottom, #89cdef 0%, #81bfde 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
}
.slider-track-low,
.slider-track-high {
position: absolute;
background: transparent;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-radius: 4px;
}
.slider-handle {
position: absolute;
width: 20px;
height: 20px;
background-color: #337ab7;
background-image: -webkit-linear-gradient(top, #149bdf 0%, #0480be 100%);
background-image: -o-linear-gradient(top, #149bdf 0%, #0480be 100%);
background-image: linear-gradient(to bottom, #149bdf 0%, #0480be 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
filter: none;
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
border: 0px solid transparent;
}
.slider-handle.round {
border-radius: 50%;
}
.slider-handle.triangle {
background: transparent none;
}
.slider-handle.custom {
background: transparent none;
}
.slider-handle.custom::before {
line-height: 20px;
font-size: 20px;
content: '\2605';
color: #726204;
}
.slider-tick {
position: absolute;
width: 20px;
height: 20px;
background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
filter: none;
opacity: 0.8;
border: 0px solid transparent;
}
.slider-tick.round {
border-radius: 50%;
}
.slider-tick.triangle {
background: transparent none;
}
.slider-tick.custom {
background: transparent none;
}
.slider-tick.custom::before {
line-height: 20px;
font-size: 20px;
content: '\2605';
color: #726204;
}
.slider-tick.in-selection {
background-image: -webkit-linear-gradient(top, #89cdef 0%, #81bfde 100%);
background-image: -o-linear-gradient(top, #89cdef 0%, #81bfde 100%);
background-image: linear-gradient(to bottom, #89cdef 0%, #81bfde 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
opacity: 1;
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,818 @@
<?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; charset: UTF-8");
echo <<<CSS
html.no-touchevents, html.no-touchevents body {
height:100%;
}
body {
font-family:{$customer_settings['css']['font_family']};
color:{$customer_settings['css']['color']['textfont']};
margin-top:0px;
margin-bottom:5px;
background-color:{$customer_settings['css']['color']['background']};
}
#header-login {
margin-top:15px;
}
#login-form, #register-form, #container-account {
padding:0px 15px;
margin-bottom:15px;
background-color:#fff;
border:1px solid {$customer_settings['css']['color']['textfont']};
}
footer {
padding-top:10px;
/* margin-bottom:50px; */
background-color: rgba(255,255,255,1);
/* border:1px solid {$customer_settings['css']['color']['textfont']}; */
border:0px;
}
footer #footer-image {
margin-top:-2px;
height:25px;
}
@media screen and (max-width:767px) {
footer {
margin-left:-15px !important;
margin-right:-15px !important;
border-left:0px;
border-right:0px;
}
}
/* Special classes */
.gradient {
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+30,f0f0f0+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%, #f0f0f0 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ffffff 30%,#f0f0f0 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ffffff 30%,#f0f0f0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f0f0f0',GradientType=0 ); /* IE6-8 */
}
.smaller {
font-size:75%;
}
.not-bold {
font-weight:400;
}
.form-group-divided {
padding-bottom:10px;
border-bottom:1px solid #eee;
}
.sectionHelpContent {
display:none;
margin: 10px 0px 30px;
}
.sectionSteps {
display:inline-block;
/* margin:5px 30px 5px 0px; */
margin:0px 30px 5px 0px;
}
.form-inner {
box-shadow:0px 5px 15px rgba(0,0,0,.25);
margin-bottom:20px;
padding:10px 15px 0px 15px;
border-left:1px solid #ddd;
border-bottom:1px solid #ddd;
border-right:1px solid #ddd;
}
a#submit-forward {
margin-left:15px;
}
a#submit-back {
margin-right:15px;
}
/* Charts */
#chart-scenario, #chart-scenario-complete {
margin:15px 0px 30px 0px;
padding-top:5px;
/* box-shadow:0px 5px 15px rgba(0,0,0,.25); */
}
@media screen and (max-width:767px) {
#chart, #chart-complete {
margin-left:-15px !important;
margin-right:-15px !important;
border-left:0px;
border-right:0px;
}
}
#chart-area, #chart-area-compare {
width: 100%;
height: 400px;
}
#chart-area-section {
width: 100%;
height: 180px;
}
#chart-area-complete {
width: 100%;
height: 400px;
}
#chart-area-avoidance {
width: 100%;
height: 400px;
}
#chart-scenario-area, #chart-scenario-complete-area {
width: 100%;
height: 500px;
}
#chart-legend {
margin:15px 0px;
padding:0px 15px;
}
.chart-legend {
margin:15px 0px;
}
#chart-scenario-legend {
margin:15px 0px;
padding:0px 15px;
}
/* Override bootstrap.css */
header {
padding:5px 0px;
margin:15px 0px;
color: {$customer_settings['css']['color']['header-textfont']};
border-top:1px solid {$customer_settings['css']['color']['header-border']};
border-bottom:1px solid {$customer_settings['css']['color']['header-border']};
background-color:{$customer_settings['css']['color']['header-background']};
}
@media screen and (max-width:767px) {
header {
border:0px none;
margin:0px 0px 15px 0px;
padding:10px 0px;
}
}
hr {
border-color:#999999;
}
.h1, .h2, .h3, h1, h2, h3 {
margin-top: 10px;
}
header h1 {
margin-top: 0px;
}
h3 {
font-size:21px;
font-weight:normal;
}
h4 {
font-weight:normal;
}
.pager-header #logo-co2rechner {
margin-top:10px;
}
.pager-header h1 a {
color:{$customer_settings['css']['color']['header-textfont']};
}
@media screen and (max-width:767px) {
.pager-header h1 {
margin-top:0px;
margin-bottom:0px;
}
.pager-header h1 a {
font-size:75%;
}
.pager-header .h5 {
font-weight:400;
}
h2, .h3 {
font-size:21px;
}
}
a {
color: {$customer_settings['css']['color']['link']};
text-decoration: none;
}
a:focus, a:hover {
color: {$customer_settings['css']['color']['link_hover']};
text-decoration: none;
}
select {
-webkit-appearance:none;
}
.btn, .form-control, .input-group-addon, .badge, .panel-group .panel, .well, .alert, .modal-content, .dropdown-menu, .nav>li>a {
border-radius:0;
}
.btn-primary {
background-color:#fff;
border-color: {$customer_settings['css']['color']['link']};
color: {$customer_settings['css']['color']['link']};
}
.btn-primary.active, .btn-primary.focus, .btn-primary:active, .btn-primary:focus, .btn-primary:hover, .open > .dropdown-toggle.btn-primary {
background-color:#e6e6e6;
border-color: {$customer_settings['css']['color']['link_hover']};
color: {$customer_settings['css']['color']['link_hover']};
}
.btn-success {
background-color:{$customer_settings['css']['color']['btn-bg-success']};
border-color: {$customer_settings['css']['color']['btn-border-success']};
color: {$customer_settings['css']['color']['btn-txt-success']};
}
.btn-success.active, .btn-success.focus, .btn-success:active, .btn-success:focus, .btn-success:hover, .open > .dropdown-toggle.btn-success {
background-color:{$customer_settings['css']['color']['btn-active-bg-success']};
border-color: {$customer_settings['css']['color']['btn-active-border-success']};
color: {$customer_settings['css']['color']['btn-active-txt-success']};
}
.btn-default.active, .btn-default.focus, .btn-default:active, .btn-default:focus, .btn-default:hover {
border-color: {$customer_settings['css']['color']['link']};
color: {$customer_settings['css']['color']['link']};
background-color:#fff;
box-shadow:none;
}
/* Accordion panels */
.panel-group {
margin-bottom: 15px;
}
.panel {
/* border: 1px solid {$customer_settings['css']['color']['link']}; */
border: 0px;
border-radius: 0px;
-webkit-box-shadow: none;
box-shadow: none;
}
@media screen and (max-width:767px) {
.panel-group {
margin-left:-15px !important;
margin-right:-15px !important;
}
.panel {
border-left:0px;
border-right:0px;
}
}
.panel-default>.panel-heading+.panel-collapse>.panel-body {
border-top:none;
}
.panel-default>.panel-footer+.panel-collapse>.panel-body {
border-bottom-color: {$customer_settings['css']['color']['link']};
}
.panel-title {
font-size: inherit;
}
.panel-accordion .panel-heading {
padding: 0;
}
.panel-accordion .panel-heading a {
display: block;
padding: 10px 15px;
}
.panel-default>.panel-heading {
background-color: #fff;
border-color: {$customer_settings['css']['color']['link']};
}
.panel-body {
padding: 0px;
}
.panel-body .container-fluid {
margin-top: 10px;
}
.panel.panel-active {
border-color:{$customer_settings['css']['color']['textfont']};
opacity:1.0;
}
.panel-active .panel-heading h2 a {
color:{$customer_settings['css']['color']['textfont']};
cursor:default;
}
/*
.panel.panel-not-active h2 {
opacity:0.6;
}
.panel.panel-not-active h2:hover {
opacity:1.0;
}
*/
.panel.panel-not-active {
background-color: rgba(255,255,255,0.9);
}
.panel.panel-not-active>.panel-heading, .panel.panel-not-active h2 {
background-color:transparent;
}
/* Badges */
.badge::before {
font-family: FontAwesome;
/* content: " "; */ /* Unicode: f054 */
}
.badge-better::before {
font-family: FontAwesome;
/* color: {$customer_settings['css']['color']['textfont']} !important; */
content: " "; /* Unicode: f063 */
}
.badge-worse::before {
font-family: FontAwesome;
/* color: {$customer_settings['css']['color']['textfont']} !important; */
content: " "; /* Unicode: f062 */
}
.badge {
color: {$customer_settings['css']['color']['textfont']};
font-size:16px;
font-weight:bold;
padding:5px 10px 5px 10px;
border-right: 15px solid #eee;
background-color: #eee;
}
div.badge {
margin-top:-15px;
margin-left:5px;
}
div.badge .badge-headline {
display:block;
text-align:left;
margin-top:0px;
margin-bottom:6px;
font-size:12px;
font-weight:400;
}
.badge-smaller, .table-condensed .badge {
font-size:14px;
}
.badge-compare {
margin:0px 0px 0px 10px;
font-size:12px;
font-weight:400;
cursor:help;
}
.badge.living::before {
color: {$customer_settings['css']['color']['living']};
}
.badge.living {
border-right: 15px solid {$customer_settings['css']['color']['living']};
}
.badge.mobility::before {
color: {$customer_settings['css']['color']['mobility']};
}
.badge.mobility {
border-right: 15px solid {$customer_settings['css']['color']['mobility']};
}
.badge.food::before {
color: {$customer_settings['css']['color']['food']};
}
.badge.food {
border-right: 15px solid {$customer_settings['css']['color']['food']};
}
.badge.streaming::before {
color: {$customer_settings['css']['color']['streaming']};
}
.badge.streaming {
border-right: 15px solid {$customer_settings['css']['color']['streaming']};
}
.badge.consumption::before {
color: {$customer_settings['css']['color']['consumption']};
}
.badge.consumption {
border-right: 15px solid {$customer_settings['css']['color']['consumption']};
}
.badge.public-consumption::before {
color: {$customer_settings['css']['color']['public-consumption']};
}
.badge.public-consumption {
border-right: 15px solid {$customer_settings['css']['color']['public-consumption']};
}
.badge.self_living::before {
color: {$customer_settings['css']['color_self']['living']};
}
.badge.self_living {
border-right: 15px solid {$customer_settings['css']['color_self']['living']};
}
.badge.self_mobility::before {
color: {$customer_settings['css']['color_self']['mobility']};
}
.badge.self_mobility {
border-right: 15px solid {$customer_settings['css']['color_self']['mobility']};
}
.badge.self_food::before {
color: {$customer_settings['css']['color_self']['food']};
}
.badge.self_food {
border-right: 15px solid {$customer_settings['css']['color_self']['food']};
}
.badge.self_consumption::before {
color: {$customer_settings['css']['color_self']['consumption']};
}
.badge.self_consumption {
border-right: 15px solid {$customer_settings['css']['color_self']['consumption']};
}
.badge.self_public_consumption::before {
color: {$customer_settings['css']['color_self']['public-consumption']};
}
.badge.self_public_consumption {
border-right: 15px solid {$customer_settings['css']['color_self']['public-consumption']};
}
.badge.other_living::before {
color: {$customer_settings['css']['color_other']['living']};
}
.badge.other_living {
border-right: 15px solid {$customer_settings['css']['color_other']['living']};
}
.badge.other_mobility::before {
color: {$customer_settings['css']['color_other']['mobility']};
}
.badge.other_mobility {
border-right: 15px solid {$customer_settings['css']['color_other']['mobility']};
}
.badge.other_consumption::before {
color: {$customer_settings['css']['color_other']['consumption']};
}
.badge.other_consumption {
border-right: 15px solid {$customer_settings['css']['color_other']['consumption']};
}
.badge-chart-legend {
display:inline-block;
width:50px;
height:16px;
margin-right:10px;
vertical-align:middle;
}
.badge-chart-legend-quota {
display:inline-block;
width:50px;
height:5px;
margin-right:10px;
vertical-align:middle;
background-color: {$customer_settings['css']['color']['quota']};
}
.badge-chart-legend-quota2 {
display:inline-block;
width:50px;
height:5px;
margin-right:10px;
vertical-align:middle;
background-color: {$customer_settings['css']['color']['quota2']};
}
.badge-chart-legend.living {
background-color: {$customer_settings['css']['color']['living']};
}
.badge-chart-legend.mobility {
background-color: {$customer_settings['css']['color']['mobility']};
}
.badge-chart-legend.food {
background-color: {$customer_settings['css']['color']['food']};
}
.badge-chart-legend.streaming {
background-color: {$customer_settings['css']['color']['streaming']};
}
.badge-chart-legend.consumption {
background-color: {$customer_settings['css']['color']['consumption']};
}
.badge-chart-legend.public-consumption {
background-color: {$customer_settings['css']['color']['public-consumption']};
}
.badge-chart-legend.self_living {
background-color: {$customer_settings['css']['color_self']['living']};
}
.badge-chart-legend.self_mobility {
background-color: {$customer_settings['css']['color_self']['mobility']};
}
.badge-chart-legend.self_food {
background-color: {$customer_settings['css']['color_self']['food']};
}
.badge-chart-legend.self_consumption {
background-color: {$customer_settings['css']['color_self']['consumption']};
}
.badge-chart-legend.self_public_consumption {
background-color: {$customer_settings['css']['color_self']['public-consumption']};
}
.badge-chart-legend.other_living {
background-color: {$customer_settings['css']['color_other']['living']};
}
.badge-chart-legend.other_mobility {
background-color: {$customer_settings['css']['color_other']['mobility']};
}
.badge-chart-legend.other_consumption {
background-color: {$customer_settings['css']['color_other']['consumption']};
}
.nav-tabs {
background-color:#fff;
}
.nav-tabs>li {
font-weight:bold;
}
.well {
margin: 20px 0px;
min-height: 10px;
padding: 0px 10px;
}
/* Table */
#sc-result .table {
margin-bottom:0px;
}
/* Form */
fieldset {
margin: 10px 0 0;
}
@media screen and (min-width:768px) {
fieldset .inner {
margin: 0px 0px 0px 20px;
}
}
legend {
padding: 5px 0;
margin-bottom: 20px;
border-bottom:1px solid #e5e5e5;
}
@media screen and (max-width:767px) {
legend {
font-size:18px;
}
}
legend .sc-result {
font-size:16px;
}
/* Overwrite bootstrap-slider.css */
.slider-track {
background-color: #ddd;
background-image: none;
background-repeat: repeat-x;
filter: none;
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 0px;
}
.slider-track-low,
.slider-track-high {
border-radius: 0px;
}
.slider-handle {
background-color: {$customer_settings['css']['color']['link']};
background-image: none;
filter: none;
-webkit-box-shadow: none;
box-shadow: none;
border: 0px solid transparent;
}
.slider-position-fix {
margin-top:7px;
}
.slider-width-fix .slider.slider-horizontal {
width:350px;
}
.slider-width-lg {
width:80%;
}
.slider-val {
font-weight:bold;
margin-left:15px;
}
/*!
* Copyright (C) 2012 PrimeBox (info@primebox.co.uk)
*
* This work is licensed under the Creative Commons
* Attribution 3.0 Unported License. To view a copy
* of this license, visit
* http://creativecommons.org/licenses/by/3.0/.
*
* Documentation available at:
* http://www.primebox.co.uk/projects/cookie-bar/
*
* When using this software you use it at your own risk. We hold
* no responsibility for any damage caused by using this plugin
* or the documentation provided.
*/
#cookie-bar {background:#333; height:auto; min-height:24px; line-height:24px; color:#eeeeee; text-align:center; padding:10px; z-index: 10000;}
#cookie-bar.fixed {position:fixed; top:0; left:0; width:100%;}
#cookie-bar.fixed.bottom {bottom:0; top:auto;}
#cookie-bar p {margin:0; padding:0;}
#cookie-bar a {color:{$customer_settings['css']['color']['btn-txt-success']}; display:inline-block; border-radius:0px; text-decoration:none; padding:3px 6px; margin-left:8px;}
#cookie-bar .cb-enable {background:{$customer_settings['css']['color']['btn-bg-success']};}
#cookie-bar .cb-enable:hover {background:{$customer_settings['css']['color']['btn-active-bg-success']};}
#cookie-bar .cb-disable {background:#990000;}
#cookie-bar .cb-disable:hover {background:#bb0000;}
#cookie-bar .cb-policy {background:#0033bb;}
#cookie-bar .cb-policy:hover {background:#0055dd;}
/* Sticky */
#stickem, #not-stickem {
margin:15px -15px 0px -15px;
padding:20px 0px;
background:rgba(51,51,51,0.9);
}
#stickem > .container, #not-stickem > .container {
margin:0px -15px;
}
.form-inner #stickem > .container {
margin:0px -30px 0px -32px !important;
}
@media screen and (min-width:768px) {
.stickit {
box-shadow:0px -5px 15px -5px rgba(51,51,51,1);
position: fixed;
bottom: 0;
z-index:1000;
}
}
@media screen and (max-width:767px) {
#stickem > .container, #not-stickem > .container {
margin-left:0px !important;
margin-right:0px !important;
}
}
@media print {
a[href]:after {
content: "";
}
header {
border:0px none;
}
.panel, .panel.panel-not-active {
display:none;
}
.panel.panel-active {
display:block !important;
border:0px none;
}
.panel-accordion .panel-heading a {
padding: 0px;
}
}
CSS;
?>

File diff suppressed because one or more lines are too long