welcome.blade.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Laravel</title>
  5. <link href="https://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. display: table;
  15. font-weight: 100;
  16. font-family: 'Lato', sans-serif;
  17. }
  18. .container {
  19. text-align: center;
  20. display: table-cell;
  21. vertical-align: middle;
  22. }
  23. .content {
  24. text-align: center;
  25. display: inline-block;
  26. }
  27. .title {
  28. font-size: 96px;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div class="container">
  34. <div class="content">
  35. <div class="title">Laravel 5</div>
  36. </div>
  37. </div>
  38. </body>
  39. </html>