]> BookStack Code Mirror - bookstack/blob - resources/views/errors/503.blade.php
Found the source of the issue, not sure how to fix
[bookstack] / resources / views / errors / 503.blade.php
1 <!DOCTYPE html>
2 <html>
3     <head>
4         <title>Be right back.</title>
5
6         <link href="//fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">
7
8         <style>
9             html, body {
10                 height: 100%;
11             }
12
13             body {
14                 margin: 0;
15                 padding: 0;
16                 width: 100%;
17                 color: #B0BEC5;
18                 display: table;
19                 font-weight: 100;
20                 font-family: 'Lato';
21             }
22
23             .container {
24                 text-align: center;
25                 display: table-cell;
26                 vertical-align: middle;
27             }
28
29             .content {
30                 text-align: center;
31                 display: inline-block;
32             }
33
34             .title {
35                 font-size: 72px;
36                 margin-bottom: 40px;
37             }
38         </style>
39     </head>
40     <body>
41         <div class="container">
42             <div class="content">
43                 <div class="title">Be right back.</div>
44             </div>
45         </div>
46     </body>
47 </html>