diff --git a/app/Models/Country.php b/app/Models/Country.php new file mode 100644 index 0000000..fc698f5 --- /dev/null +++ b/app/Models/Country.php @@ -0,0 +1,11 @@ +id(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('countries'); + } +}; diff --git a/public/frontend/css/style.css b/public/frontend/css/style.css index 6478676..4f25b76 100644 --- a/public/frontend/css/style.css +++ b/public/frontend/css/style.css @@ -248,7 +248,7 @@ Responsive Codes .top-links{ display: flex; align-items: center; - gap: 0.8rem; + gap: 1.8rem; color: #000000; margin-right: 0; } @@ -1692,18 +1692,26 @@ table.lightgrey-weekends tbody td:nth-child(n+6) { border-radius: 6px; margin-top: 35px; } +.enquiry-from-btn:hover{ + background-color: #E32394; + transition: background-color 1s ease-out 100ms; +} +.form-select .select-placeholder{ + color: #7B8792; +} .enquiry-form-row h3{ font-weight: 600; - color: #E22899; - margin: 20px 0; + color: #212529; + margin: 10px 0; text-align: center; + font-size: 24px; letter-spacing: 0.001em; display: inline-block ; } .enquiry-form-row h3::after{ content: ''; - border-bottom: 5px solid #E22899; - margin: 1% 40%; + border-bottom: 2px solid #212529; + margin: 0.5% 45%; justify-content: center; display: block; } @@ -1714,6 +1722,25 @@ table.lightgrey-weekends tbody td:nth-child(n+6) { line-height: 48px; letter-spacing: 0.005em; color: #326CBF; +} +.enquiry-form-section p{ + text-align: center; +} +#spouse-married-date, +#spouse-academic, +#spouse-experience, +#spouse-salary, +#work-exp-detail, +#work-salary-mode{ + display: none; +} +.married{ + display: block !important; +} +.enquiry-form-section .form-control:focus, +.enquiry-form-section .form-select:focus{ + box-shadow: none; + border-color: none; } /* enquiry page css ends */ diff --git a/resources/views/enquiry-form.blade.php b/resources/views/enquiry-form.blade.php index d72b24e..3328699 100644 --- a/resources/views/enquiry-form.blade.php +++ b/resources/views/enquiry-form.blade.php @@ -10,7 +10,8 @@ @endsection @section('content')
-

Can you please send me fill up this information sheet and we will get back to you soon, Thanks !

+

Enquiry Form

+

Please fill up the form and we will get back to you soon, Thanks !

Personal Details

@@ -23,7 +24,7 @@
- +
@@ -41,7 +42,12 @@
- +
@@ -78,7 +84,7 @@
- +
@@ -88,7 +94,7 @@
-

Addidional Information

+

Additional Information

@@ -127,11 +133,21 @@
- + + +
+
+
+
+
-
+
@@ -148,45 +164,46 @@
- +
- +
- +
+
-
+
- +
-
+
-
+
-
+
@@ -207,7 +224,13 @@
- +
@@ -216,4 +239,49 @@
+@endsection +@section('script') + @endsection \ No newline at end of file diff --git a/resources/views/layout/app.blade.php b/resources/views/layout/app.blade.php index 09f7e74..828a1c5 100644 --- a/resources/views/layout/app.blade.php +++ b/resources/views/layout/app.blade.php @@ -62,7 +62,7 @@