welcome.blade.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. body {
  8. margin: 0;
  9. padding: 0;
  10. width: 100%;
  11. height: 100%;
  12. color: #B0BEC5;
  13. display: table;
  14. font-weight: 100;
  15. font-family: 'Lato';
  16. }
  17. .container {
  18. text-align: center;
  19. display: table-cell;
  20. vertical-align: middle;
  21. }
  22. .content {
  23. text-align: center;
  24. display: inline-block;
  25. }
  26. .title {
  27. font-size: 96px;
  28. margin-bottom: 40px;
  29. }
  30. .quote {
  31. font-size: 24px;
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <div class="container">
  37. <div class="content">
  38. <div class="title">Laravel 5</div>
  39. <div class="quote">{{ Inspiring::quote() }}</div>
  40. </div>
  41. </div>
  42. </body>
  43. </html>