layout.blade.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>@yield('title')</title>
  7. <!-- Fonts -->
  8. <link rel="dns-prefetch" href="//fonts.gstatic.com">
  9. <link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet" type="text/css">
  10. <!-- Styles -->
  11. <style>
  12. html, body {
  13. background-color: #fff;
  14. color: #636b6f;
  15. font-family: 'Nunito', sans-serif;
  16. font-weight: 100;
  17. height: 100vh;
  18. margin: 0;
  19. }
  20. .full-height {
  21. height: 100vh;
  22. }
  23. .flex-center {
  24. align-items: center;
  25. display: flex;
  26. justify-content: center;
  27. }
  28. .position-ref {
  29. position: relative;
  30. }
  31. .content {
  32. text-align: center;
  33. }
  34. .title {
  35. font-size: 36px;
  36. padding: 20px;
  37. }
  38. </style>
  39. </head>
  40. <body>
  41. <div class="flex-center position-ref full-height">
  42. <div class="content">
  43. <div class="title">
  44. @yield('message')
  45. </div>
  46. </div>
  47. </div>
  48. </body>
  49. </html>