server/src/resources/views/welcome.blade.php
changeset 1 01a844d292ac
child 2 00e2916104fe
equal deleted inserted replaced
0:279124b91971 1:01a844d292ac
       
     1 <html>
       
     2 	<head>
       
     3 		<title>Laravel</title>
       
     4 		
       
     5 		<link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
       
     6 
       
     7 		<style>
       
     8 			body {
       
     9 				margin: 0;
       
    10 				padding: 0;
       
    11 				width: 100%;
       
    12 				height: 100%;
       
    13 				color: #B0BEC5;
       
    14 				display: table;
       
    15 				font-weight: 100;
       
    16 				font-family: 'Lato';
       
    17 			}
       
    18 
       
    19 			.container {
       
    20 				text-align: center;
       
    21 				display: table-cell;
       
    22 				vertical-align: middle;
       
    23 			}
       
    24 
       
    25 			.content {
       
    26 				text-align: center;
       
    27 				display: inline-block;
       
    28 			}
       
    29 
       
    30 			.title {
       
    31 				font-size: 96px;
       
    32 				margin-bottom: 40px;
       
    33 			}
       
    34 
       
    35 			.quote {
       
    36 				font-size: 24px;
       
    37 			}
       
    38 		</style>
       
    39 	</head>
       
    40 	<body>
       
    41 		<div class="container">
       
    42 			<div class="content">
       
    43 				<div class="title">Laravel 5</div>
       
    44 				<div class="quote">{{ Inspiring::quote() }}</div>
       
    45 			</div>
       
    46 		</div>
       
    47 	</body>
       
    48 </html>