Partial overriding of the status page colours!

This commit is contained in:
James Brooks
2014-12-20 17:55:40 +00:00
parent 77913b59db
commit 505dd36773
2 changed files with 12 additions and 0 deletions

View File

@@ -13,6 +13,8 @@
<link href='http://fonts.googleapis.com/css?family=Raleway:400,700,300,600' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="{{ elixir('css/all.css') }}">
@include('partials.stylesheet')
<script src="{{ elixir('js/all.js') }}"></script>
</head>
<body class='status-page'>

View File

@@ -0,0 +1,10 @@
<style type='text/css'>
body.status-page {
@if($styleBackgroundColor = Setting::get('style_background_color'))
background-color: {{ $styleBackgroundColor }};
@endif
@if($styleTextColor = Setting::get('style_text_color'))
color: {{ $styleTextColor }};
@endif
}
</style>