welcome.blade.php 1.2 KB

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