layout.blade.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. <!-- Styles -->
  8. <style>
  9. html, body {
  10. background-color: #fff;
  11. color: #636b6f;
  12. font-family: 'Nunito', sans-serif;
  13. font-weight: 100;
  14. height: 100vh;
  15. margin: 0;
  16. }
  17. .full-height {
  18. height: 100vh;
  19. }
  20. .flex-center {
  21. align-items: center;
  22. display: flex;
  23. justify-content: center;
  24. }
  25. .position-ref {
  26. position: relative;
  27. }
  28. .content {
  29. text-align: center;
  30. }
  31. .title {
  32. font-size: 36px;
  33. padding: 20px;
  34. }
  35. </style>
  36. </head>
  37. <body>
  38. <div class="flex-center position-ref full-height">
  39. <div class="content">
  40. <div class="title">
  41. @yield('message')
  42. </div>
  43. </div>
  44. </div>
  45. </body>
  46. </html>