welcome.blade.php 772 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <html>
  2. <head>
  3. <link href='http://fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
  4. <style>
  5. body {
  6. margin: 0;
  7. padding: 0;
  8. width: 100%;
  9. height: 100%;
  10. color: #B0BEC5;
  11. display: table;
  12. font-weight: 100;
  13. font-family: 'Lato';
  14. }
  15. .container {
  16. text-align: center;
  17. display: table-cell;
  18. vertical-align: middle;
  19. }
  20. .content {
  21. text-align: center;
  22. display: inline-block;
  23. }
  24. .title {
  25. font-size: 96px;
  26. margin-bottom: 40px;
  27. }
  28. .quote {
  29. font-size: 24px;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div class="container">
  35. <div class="content">
  36. <div class="title">Laravel 5</div>
  37. <div class="quote">{{ Inspiring::quote() }}</div>
  38. </div>
  39. </div>
  40. </body>
  41. </html>