minimal.blade.php 1.5 KB

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