firefly-iii/resources/views/errors/503.twig

48 lines
1.0 KiB
Twig
Raw Normal View History

<html>
2015-06-27 01:06:24 -05:00
<head>
2016-02-06 12:06:10 -06:00
<link href='https://fonts.googleapis.com/css?family=Roboto:300' rel='stylesheet' type='text/css'>
2015-06-27 01:06:24 -05:00
<style>
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
color: #B0BEC5;
display: table;
2016-02-06 12:06:10 -06:00
font-family: 'Roboto', sans-serif;
}
p {
color:#575e62;
font-size:1.5em;
2015-06-27 01:06:24 -05:00
}
.container {
text-align: center;
display: table-cell;
vertical-align: middle;
}
.content {
text-align: center;
display: inline-block;
}
.title {
2016-02-06 12:06:10 -06:00
font-size: 4em;
2015-06-27 01:06:24 -05:00
margin-bottom: 40px;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
2016-02-06 12:06:10 -06:00
<div class="title">Be right back!</div>
<p>
Firefly III is down for some necessary maintenance. Please check back in a second.
</p>
2015-06-27 01:06:24 -05:00
</div>
</div>
</body>
</html>