Merge branch 'master' of github.com:c3e/site

This commit is contained in:
Timm 2015-03-18 12:28:07 +01:00
commit 92fecd4df4
2 changed files with 5 additions and 5 deletions

View File

@ -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" );
}
});
</script>
<li id="status_open">
<a href="status.html" style="color:#32AB3C !important;">
<a href="status.html" style="color:#5CB85C !important;">
Raum offen
</a>
</li>

View File

@ -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 {