welcome.blade.php 1023 Bytes
Newer Older
Kai Rienow committed
1
<!DOCTYPE html>
2
<html>
Taylor Otwell committed
3 4
    <head>
        <title>Laravel</title>
5

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
            body {
                margin: 0;
                padding: 0;
                width: 100%;
                display: table;
                font-weight: 100;
                font-family: 'Lato';
            }
21

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

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

Taylor Otwell committed
33 34 35 36 37 38 39 40 41 42 43 44
            .title {
                font-size: 96px;
            }
        </style>
    </head>
    <body>
        <div class="container">
            <div class="content">
                <div class="title">Laravel 5</div>
            </div>
        </div>
    </body>
45
</html>