0
|
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 |
.title a { |
|
36 |
text-decoration: none; |
|
37 |
color: #B0BEC5; |
|
38 |
} |
|
39 |
|
|
40 |
.quote { |
|
41 |
font-size: 24px; |
|
42 |
} |
|
43 |
</style> |
|
44 |
</head> |
|
45 |
<body> |
|
46 |
<div class="container"> |
|
47 |
<div class="content"> |
|
48 |
<div class="title"><a href="{{ url('home') }}">Laravel 5</a></div> |
|
49 |
<div class="quote">{{ Inspiring::quote() }}</div> |
|
50 |
</div> |
|
51 |
</div> |
|
52 |
</body> |
|
53 |
</html> |