503.blade.php 1.08 KB
Newer Older
Kai Rienow committed
1
<!DOCTYPE html>
2
<html>
Taylor Otwell committed
3
    <head>
Taylor Otwell committed
4 5
        <title>Be right back.</title>

6
        <link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">
7

Taylor Otwell committed
8
        <style>
Kai Rienow committed
9 10 11 12
            html, body {
                height: 100%;
            }

Taylor Otwell committed
13 14 15 16 17 18 19 20 21
            body {
                margin: 0;
                padding: 0;
                width: 100%;
                color: #B0BEC5;
                display: table;
                font-weight: 100;
                font-family: 'Lato';
            }
22

Taylor Otwell committed
23 24 25 26 27
            .container {
                text-align: center;
                display: table-cell;
                vertical-align: middle;
            }
28

Taylor Otwell committed
29 30 31 32
            .content {
                text-align: center;
                display: inline-block;
            }
33

Taylor Otwell committed
34 35 36 37 38 39 40 41 42 43 44 45 46
            .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>
47
</html>