guest-home.blade.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <!DOCTYPE html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>X•Y•Z</title>
  7. <!-- Fonts -->
  8. <link href="https://fonts.googleapis.com/css?family=Nunito:200,600,700" rel="stylesheet">
  9. {{-- Bootstrap --}}
  10. <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
  11. <link rel="stylesheet" href="/css/bootstrap.min.css">
  12. <!-- Styles for patient home -->
  13. <style>
  14. html, body {
  15. background-color: #fff;
  16. color: #636b6f;
  17. font-family: 'Nunito', sans-serif;
  18. font-weight: 200;
  19. height: 100vh;
  20. margin: 0;
  21. }
  22. body {
  23. background-image: url(/images/patient-home-banner.jpg);
  24. background-size: 100% auto;
  25. background-position: top center;
  26. background-attachment: fixed;
  27. }
  28. @media (max-aspect-ratio: 16/11) {
  29. body {
  30. background-size: auto 100%;
  31. }
  32. }
  33. h1 {
  34. color: #555;
  35. width: 50%;
  36. text-align: center;
  37. }
  38. @media (max-width: 900px) {
  39. h1 {
  40. width: auto;
  41. text-align: center;
  42. font-size: 2rem;
  43. text-shadow: 1px 1px 2px #c0e4e2;
  44. }
  45. }
  46. @media (max-width: 400px) {
  47. h1 {
  48. font-size: 1.75rem;
  49. text-shadow: 1px 1px 2px #c0e4e2;
  50. }
  51. }
  52. .form-container {
  53. width: 50%;
  54. margin-right: auto;
  55. }
  56. @media (max-width: 900px) {
  57. .form-container {
  58. margin: auto;
  59. width: 100%;
  60. }
  61. }
  62. .form-container .form {
  63. background: #ffffffd1;
  64. max-width: 400px;
  65. margin: auto;
  66. border-radius: 4px;
  67. }
  68. .form-container .form h3 {
  69. font-size: 1.3rem;
  70. }
  71. .border-success {
  72. border-color: #44bdad85 !important;
  73. }
  74. .text-dark {
  75. color: #555;
  76. font-weight: 600;
  77. }
  78. .form-container .form input {
  79. border-color: #44bdad85 !important;
  80. }
  81. .form-container .form input:focus {
  82. box-shadow: 0 0 0 0.2rem #44bdad85;
  83. }
  84. </style>
  85. </head>
  86. <body class="px-3 px-md-5 py-5">
  87. @yield('content')
  88. </body>
  89. </html>