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

59 lines
1.5 KiB
Twig
Raw Normal View History

<html>
2015-06-27 01:06:24 -05:00
<head>
2017-04-09 00:56:46 -05:00
<base href="{{ route('index') }}/"/>
<title>Firefly III is in maintenance mode.</title>
2015-06-27 01:06:24 -05:00
<style>
2016-11-24 12:26:47 -06:00
/* latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
2018-01-23 11:10:04 -06:00
src: local('Roboto Light'), local('Roboto-Light'), url('fonts/roboto-light-300.woff2') format('woff2'), url('fonts/roboto-light-300.woff') format('woff');
2016-11-24 12:26:47 -06:00
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
2015-06-27 01:06:24 -05:00
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;
}
2016-02-06 12:06:10 -06:00
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>