minimal.blade.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. .code {
  29. border-right: 2px solid;
  30. font-size: 26px;
  31. padding: 0 15px 0 15px;
  32. text-align: center;
  33. }
  34. .message {
  35. font-size: 18px;
  36. text-align: center;
  37. }
  38. </style>
  39. </head>
  40. <body>
  41. <div class="flex-center position-ref full-height">
  42. <div class="code">
  43. @yield('code')
  44. </div>
  45. <div class="message" style="padding: 10px;">
  46. @yield('message')
  47. </div>
  48. </div>
  49. </body>
  50. </html>