guest-meeting.blade.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. <link rel="stylesheet" href="/fontawesome-free/css/all.min.css">
  13. <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
  14. <!-- Styles for patient home -->
  15. <style>
  16. html, body {
  17. background-color: #fff;
  18. color: #636b6f;
  19. font-family: 'Nunito', sans-serif;
  20. font-weight: 200;
  21. height: 100vh;
  22. margin: 0;
  23. }
  24. h1 {
  25. color: #555;
  26. width: 50%;
  27. text-align: center;
  28. }
  29. @media (max-width: 900px) {
  30. h1 {
  31. width: auto;
  32. text-align: center;
  33. font-size: 2rem;
  34. text-shadow: 1px 1px 2px #c0e4e2;
  35. }
  36. }
  37. @media (max-width: 400px) {
  38. h1 {
  39. font-size: 1.75rem;
  40. text-shadow: 1px 1px 2px #c0e4e2;
  41. }
  42. }
  43. .form-container {
  44. width: 50%;
  45. margin-right: auto;
  46. }
  47. @media (max-width: 900px) {
  48. .form-container {
  49. margin: auto;
  50. width: 100%;
  51. }
  52. }
  53. .form-container .form {
  54. background: #ffffffd1;
  55. max-width: 400px;
  56. margin: auto;
  57. border-radius: 4px;
  58. }
  59. .form-container .form h3 {
  60. font-size: 1.3rem;
  61. }
  62. .border-success {
  63. border-color: #44bdad85 !important;
  64. }
  65. .text-dark {
  66. color: #555;
  67. font-weight: 600;
  68. }
  69. .form-container .form input {
  70. border-color: #44bdad85 !important;
  71. }
  72. .form-container .form input:focus {
  73. box-shadow: 0 0 0 0.2rem #44bdad85;
  74. }
  75. </style>
  76. </head>
  77. <body class="p-0 m-0">
  78. @yield('content')
  79. </body>
  80. </html>