diff --git a/_includes/header.html b/_includes/header.html index 89cab90..d46e3b8 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -26,15 +26,15 @@ $.getJSON("http://status.chaospott.de/status.json").done(function(data) { if(data.state.open) { $( "#status_open" ).css( "display", "block" ); - $( "#status_bar" ).css( "borderColor", "#32AB3C" ); + $( "#status_bar" ).css( "borderColor", "#5CB85C" ); } else { $( "#status_closed" ).css( "display", "block" ); - $( "#status_bar" ).css( "borderColor", "#ff0000" ); + $( "#status_bar" ).css( "borderColor", "#D9534F" ); } });
  • - + Raum offen
  • diff --git a/css/style.css b/css/style.css index 85bfbd1..ec8f14f 100644 --- a/css/style.css +++ b/css/style.css @@ -100,11 +100,11 @@ ul.nav>li>a { } #status_open a { - color:#00ff00 !important; + color:#5CB85C !important; } #status_closed a { - color:#ff0000 !important; + color:#D9534F !important; } #status_bar {