mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-24 03:34:12 +01:00
11 lines
275 B
PHP
11 lines
275 B
PHP
|
<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>
|