Files
spa-api/resources/views/welcome.blade.php

53 lines
1.2 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>
<title>Laravel</title>
2014-12-08 09:31:31 -06:00
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: 96px;
margin-bottom: 40px;
}
.quote {
font-size: 24px;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<div class="title">Laravel 5</div>
<div class="quote">{{ Inspiring::quote() }}</div>
</div>
</div>
</body>
2014-12-08 09:31:31 -06:00
</html>