From c5539ffb01563675a187705ce29d4e8f991ac660 Mon Sep 17 00:00:00 2001 From: tribikram Date: Wed, 1 Feb 2023 12:29:10 +0545 Subject: [PATCH] [add] visa page --- public/frontend/css/style.css | 57 ++++++++++++++++---- resources/views/layout/app.blade.php | 18 +++++-- resources/views/visa.blade.php | 78 +++++++++++++++------------- 3 files changed, 104 insertions(+), 49 deletions(-) diff --git a/public/frontend/css/style.css b/public/frontend/css/style.css index c00f28d..e17a648 100644 --- a/public/frontend/css/style.css +++ b/public/frontend/css/style.css @@ -106,7 +106,6 @@ h2{ display: block; transition: all .5s, .5s linear; top: 100%; - width: calc(100% + 3rem); animation: fadeInUp 500ms; padding: 0; } @@ -413,14 +412,13 @@ Responsive Codes .study-melbourne-section, .study-detail-section, .scholarship-section, -.student-visa-section, .about-header-section, .why-et, -.student-visa-section, .blogs-section, .why-et, .blog-detail-section, -.faq-section{ +.faq-section, +.student-visa-section{ padding: 3rem 6rem; } .services-section .row, @@ -713,7 +711,9 @@ Responsive Codes .sydney-img{ padding: 2rem 0 0 5rem; } -.sydney-desc h2{ +.sydney-desc h2, +.visa-content h2, +.visa-desc h2{ color: #E22899; } .sydney-desc p{ @@ -803,7 +803,8 @@ Responsive Codes margin: 1rem 0; } /* student visa page css */ -.student-visa-section .nav-pills .nav-link{ +.student-visa-section .nav-pills .nav-link, +.student-visa-section .visa-table .tab-link{ background: #E5F0FF; border-radius: 0; font-weight: 600; @@ -812,12 +813,15 @@ Responsive Codes color: #2E2E2E; padding: 16px; text-align: initial; + text-decoration: none; } -.student-visa-section .nav-pills .nav-link.active{ +.student-visa-section .nav-pills .nav-link.active, +.student-visa-section .visa-table .tab-link.active{ background-color: #E22899; color: #FFFFFF !important; } -.student-visa-section .nav-pills .nav-link.active .fa-solid{ +.student-visa-section .nav-pills .nav-link.active .fa-solid, +.student-visa-section .visa-table .tab-link.active .fa-solid{ width: 28px; height: 28px; display: flex; @@ -829,7 +833,6 @@ Responsive Codes border-radius: 50%; margin-right: 0; } - .student-visa-section .nav-link:hover{ text-decoration: none; color: #FFFFFF !important; @@ -847,6 +850,17 @@ Responsive Codes box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05); border-radius: 12px; } +.visa-table .tab-link{ + border-bottom: 1px solid #AFAFAF; +} +.visa-table .tab-link:first-child{ + border-radius: 12px 12px 0 0; +} +.visa-table .tab-link:last-child{ + border-radius: 0 0 12px 12px; + border-bottom: none; +} + .visa-table .nav-link{ border-bottom: 1px solid #AFAFAF; } @@ -857,6 +871,25 @@ Responsive Codes border-radius: 0 0 12px 12px; border-bottom: none; } +.visa-desc ul{ + font-weight: 400; + font-size: 16px; + line-height: 2rem; + list-style: none; + padding-left: 1.5rem; +} +.visa-desc ul li::before{ + content: "\f00c"; + color: #E22899; + font-family: FontAwesome, sans-serif; + display: inline-block; + margin-right: 0.5em; + margin-left: -1.3em; + width: 1.3em; +} +.visa-display-section{ + margin-top: 40px; +} /* visa page css ends */ /* contact us page css */ .contact-form-section{ @@ -955,7 +988,8 @@ Responsive Codes line-height: 28px; color: #0A2849; } -.contact-form .row{ +.contact-form .row, +.visa-display-section .row{ display: flex; align-items: center; } @@ -1168,7 +1202,8 @@ Responsive Codes color: #676676; } .featured-article h2, -.blog-detail-desc h2{ +.blog-detail-desc h2, +.visa-content h3{ font-weight: 700; font-size: 30px; line-height: 45px; diff --git a/resources/views/layout/app.blade.php b/resources/views/layout/app.blade.php index 811f27b..2e95c7e 100644 --- a/resources/views/layout/app.blade.php +++ b/resources/views/layout/app.blade.php @@ -41,6 +41,7 @@ $logo = \App\Models\Setting::where('slug','logo')->get('value')->first()->value ?? ''; $white_logo = \App\Models\Setting::where('slug','white-logo')->get('value')->first()->value ?? ''; $services = \App\Models\Service::where('status',1)->get(); + $visas = \App\Models\VisaService::where('status',1)->get(); @endphp
@@ -98,9 +99,17 @@ - - +
diff --git a/resources/views/visa.blade.php b/resources/views/visa.blade.php index 37652db..dd008bf 100644 --- a/resources/views/visa.blade.php +++ b/resources/views/visa.blade.php @@ -22,46 +22,54 @@
- -
-
@endsection \ No newline at end of file -- 2.25.1