Files
spa-api/resources/views/errors/503.blade.php

48 lines
1.1 KiB
PHP
Raw Normal View History

2015-06-11 12:43:52 +02:00
<!DOCTYPE html>
2014-12-08 09:31:31 -06:00
<html>
2015-02-22 20:47:03 -06:00
<head>
2015-05-22 15:42:17 -05:00
<title>Be right back.</title>
2015-02-22 20:47:03 -06:00
<link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
2014-12-08 09:31:31 -06:00
2015-02-22 20:47:03 -06:00
<style>
2015-06-11 13:18:02 +02:00
html, body {
height: 100%;
}
2015-02-22 20:47:03 -06:00
body {
margin: 0;
padding: 0;
width: 100%;
color: #B0BEC5;
display: table;
font-weight: 100;
font-family: 'Lato';
}
2014-12-08 09:31:31 -06:00
2015-02-22 20:47:03 -06:00
.container {
text-align: center;
display: table-cell;
vertical-align: middle;
}
2014-12-08 09:31:31 -06:00
2015-02-22 20:47:03 -06:00
.content {
text-align: center;
display: inline-block;
}
2014-12-08 09:31:31 -06:00
2015-02-22 20:47:03 -06:00
.title {
font-size: 72px;
margin-bottom: 40px;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<div class="title">Be right back.</div>
</div>
</div>
</body>
2014-12-08 09:31:31 -06:00
</html>