[add] visa page #9

Open
tribikram wants to merge 1 commits from et#8 into master
  1. 57
      public/frontend/css/style.css
  2. 18
      resources/views/layout/app.blade.php
  3. 70
      resources/views/visa.blade.php

@ -106,7 +106,6 @@ h2{
display: block; display: block;
transition: all .5s, .5s linear; transition: all .5s, .5s linear;
top: 100%; top: 100%;
width: calc(100% + 3rem);
animation: fadeInUp 500ms; animation: fadeInUp 500ms;
padding: 0; padding: 0;
} }
@ -413,14 +412,13 @@ Responsive Codes
.study-melbourne-section, .study-melbourne-section,
.study-detail-section, .study-detail-section,
.scholarship-section, .scholarship-section,
.student-visa-section,
.about-header-section, .about-header-section,
.why-et, .why-et,
.student-visa-section,
.blogs-section, .blogs-section,
.why-et, .why-et,
.blog-detail-section, .blog-detail-section,
.faq-section{ .faq-section,
.student-visa-section{
padding: 3rem 6rem; padding: 3rem 6rem;
} }
.services-section .row, .services-section .row,
@ -713,7 +711,9 @@ Responsive Codes
.sydney-img{ .sydney-img{
padding: 2rem 0 0 5rem; padding: 2rem 0 0 5rem;
} }
.sydney-desc h2{ .sydney-desc h2,
.visa-content h2,
.visa-desc h2{
color: #E22899; color: #E22899;
} }
.sydney-desc p{ .sydney-desc p{
@ -803,7 +803,8 @@ Responsive Codes
margin: 1rem 0; margin: 1rem 0;
} }
/* student visa page css */ /* 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; background: #E5F0FF;
border-radius: 0; border-radius: 0;
font-weight: 600; font-weight: 600;
@ -812,12 +813,15 @@ Responsive Codes
color: #2E2E2E; color: #2E2E2E;
padding: 16px; padding: 16px;
text-align: initial; 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; background-color: #E22899;
color: #FFFFFF !important; 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; width: 28px;
height: 28px; height: 28px;
display: flex; display: flex;
@ -829,7 +833,6 @@ Responsive Codes
border-radius: 50%; border-radius: 50%;
margin-right: 0; margin-right: 0;
} }
.student-visa-section .nav-link:hover{ .student-visa-section .nav-link:hover{
text-decoration: none; text-decoration: none;
color: #FFFFFF !important; color: #FFFFFF !important;
@ -847,6 +850,17 @@ Responsive Codes
box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05); box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05);
border-radius: 12px; 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{ .visa-table .nav-link{
border-bottom: 1px solid #AFAFAF; border-bottom: 1px solid #AFAFAF;
} }
@ -857,6 +871,25 @@ Responsive Codes
border-radius: 0 0 12px 12px; border-radius: 0 0 12px 12px;
border-bottom: none; 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 */ /* visa page css ends */
/* contact us page css */ /* contact us page css */
.contact-form-section{ .contact-form-section{
@ -955,7 +988,8 @@ Responsive Codes
line-height: 28px; line-height: 28px;
color: #0A2849; color: #0A2849;
} }
.contact-form .row{ .contact-form .row,
.visa-display-section .row{
display: flex; display: flex;
align-items: center; align-items: center;
} }
@ -1168,7 +1202,8 @@ Responsive Codes
color: #676676; color: #676676;
} }
.featured-article h2, .featured-article h2,
.blog-detail-desc h2{ .blog-detail-desc h2,
.visa-content h3{
font-weight: 700; font-weight: 700;
font-size: 30px; font-size: 30px;
line-height: 45px; line-height: 45px;

@ -41,6 +41,7 @@
$logo = \App\Models\Setting::where('slug','logo')->get('value')->first()->value ?? ''; $logo = \App\Models\Setting::where('slug','logo')->get('value')->first()->value ?? '';
$white_logo = \App\Models\Setting::where('slug','white-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(); $services = \App\Models\Service::where('status',1)->get();
$visas = \App\Models\VisaService::where('status',1)->get();
@endphp @endphp
<!-- Top section --> <!-- Top section -->
<section id="topbar" class="d-flex justify-content-center justify-content-md-between align-items-center"> <section id="topbar" class="d-flex justify-content-center justify-content-md-between align-items-center">
@ -98,9 +99,17 @@
</li> </li>
</ul> </ul>
</li> </li>
<li class="nav-item dropdown">
<li class="nav-item"> <a class="nav-link dropdown-toggle" href="{{url('#')}}" id="navbarDropdown" role="button" data-bs-hover="dropdown" aria-expanded="false">
<a class="nav-link" href="{{url('/visas')}}">VISA</a> VISA
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li>
@foreach($visas as $visa)
<a class="dropdown-item" href="{{url('visas')}}">{{$visa->name}}</a>
@endforeach
</li>
</ul>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" href="{{url('/blogs')}}">BLOG</a> <a class="nav-link" href="{{url('/blogs')}}">BLOG</a>
@ -108,6 +117,9 @@
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" href="{{url('contact')}}">CONTACT</a> <a class="nav-link" href="{{url('contact')}}">CONTACT</a>
</li> </li>
<li class="nav-item">
<a class="nav-link" href="{{url('/faq')}}">FAQs</a>
</li>
</ul> </ul>
<div class="mobile-navbar-btn"> <div class="mobile-navbar-btn">
<img src="{{url('frontend/icons/menu.png')}}" name="menu-outline" class="mobile-nav-icon" alt=""> <img src="{{url('frontend/icons/menu.png')}}" name="menu-outline" class="mobile-nav-icon" alt="">

@ -22,45 +22,53 @@
</div> </div>
</section> </section>
<section class="student-visa-section"> <section class="student-visa-section">
<!-- <h1>Student Visa</h1> --> <div class="row gx-5">
<div class="d-flex align-items-start mt-5"> <div class="col-md-3">
<div class="nav flex-column nav-pills visa-table me-5 col-md-4 col-sm-12" id="v-pills-tab" role="tablist" aria-orientation="vertical"> <div class="visa-table">
@foreach($visas as $visa) @foreach($visas as $visa)
<button class="nav-link {{$loop->iteration == 1 ? 'active' : ''}} d-flex justify-content-between align-items-center" id="v-pills-profile-tab{{$visa->id}}" data-bs-toggle="pill" data-bs-target="#v-pills-profile{{$visa->id}}" type="button" role="tab" aria-controls="v-pills-profile{{$visa->id}}" aria-selected="{{$loop->iteration == 1 ? true : false}}"> <a href='' class="tab-link {{$loop->iteration == 1 ? 'active' : ''}} d-flex justify-content-between align-items-center">
{{$visa->name}} <i class="fa-solid fa-angle-right"></i> {{$visa->name}} <i class="fa-solid fa-angle-right"></i>
</button> </a>
@endforeach @endforeach
<!-- <button class="nav-link d-flex justify-content-between align-items-center" id="v-pills-profile-tab{{$visa->id}}" data-bs-toggle="pill" data-bs-target="#v-pills-profile{{$visa->id}}" type="button" role="tab" aria-controls="v-pills-profile{{$visa->id}}" aria-selected="false">
Student VISA <i class="fa-solid fa-angle-right"></i>
</button>
<button class="nav-link d-flex justify-content-between align-items-center" id="v-pills-messages-tab" data-bs-toggle="pill" data-bs-target="#v-pills-messages" type="button" role="tab" aria-controls="v-pills-messages" aria-selected="false">
Employer Sponsored VISA <i class="fa-solid fa-angle-right"></i>
</button>
<button class="nav-link d-flex justify-content-between align-items-center" id="v-pills-settings-tab" data-bs-toggle="pill" data-bs-target="#v-pills-settings" type="button" role="tab" aria-controls="v-pills-settings" aria-selected="false">
Family VISA <i class="fa-solid fa-angle-right"></i>
</button>
<button class="nav-link d-flex justify-content-between align-items-center" id="v-pills-settings-tab" data-bs-toggle="pill" data-bs-target="#v-pills-settings" type="button" role="tab" aria-controls="v-pills-settings" aria-selected="false">
Business VISA <i class="fa-solid fa-angle-right"></i>
</button> -->
</div> </div>
<div class="tab-content col-md-8 col-sm-12" id="v-pills-tabContent">
@foreach($visas as $visa)
<div class="tab-pane fade {{$loop->iteration == 1 ? 'show active' : ''}}" id="v-pills-profile{{$visa->id}}" role="tabpanel" aria-labelledby="v-pills-profile-tab{{$visa->id}}" tabindex="0">
{!!$visa->short_description!!}
</div> </div>
@endforeach <div class="col-md-9">
<!-- <div class="tab-pane fade" id="v-pills-profile" role="tabpanel" aria-labelledby="v-pills-profile-tab{{$visa->id}}" tabindex="0"> --> <div class="visa-content">
<!-- <h2 class="visa-para-title"><img src="{{url('frontend/icons/side-bars.svg')}}" class="me-2" alt=""> Subclass 500</h2> <h2><img src="{{url('frontend/icons/side-bars.svg')}}" class="me-2" alt=""> Subclass 5000</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. <h3>Lorem Ipsum is simply dummy text</h3>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
<br><br> <br><br>
It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
<br><br> <br><br>
It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum..
</p> --> </p>
<!-- </div> --> </div>
<!-- <div class="tab-pane fade" id="v-pills-messages" role="tabpanel" aria-labelledby="v-pills-messages-tab" tabindex="0">...</div> <section class="visa-display-section">
<div class="tab-pane fade" id="v-pills-settings" role="tabpanel" aria-labelledby="v-pills-settings-tab" tabindex="0">...</div> <div class="row">
<div class="tab-pane fade" id="v-pills-settings" role="tabpanel" aria-labelledby="v-pills-settings-tab" tabindex="0">...</div> --> <div class="col-md-6">
<div class="visa-desc">
<h2>Lorem Ipsum has been the industry's standard</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
</p>
<ul>
<li>Lorem ipsum dolor sit amet consectetur adipisicing elit.</li>
<li>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quos excepturi deserunt iste, recusandae dolor voluptates.</li>
<li>Lorem ipsum dolor sit amet consectetur adipisicing elit.</li>
<li>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quos excepturi deserunt iste, recusandae dolor voluptates.</li>
<li>Lorem ipsum dolor sit amet consectetur adipisicing elit.</li>
<li>Lorem ipsum dolor sit amet consectetur adipisicing elit.</li>
</ul>
</div>
</div>
<div class="col-md-6">
<div class="visa-img">
<img src="{{url('frontend/images/sydney-opera-house.png')}}" class="w-100" alt="">
</div>
</div>
</div>
</section>
</div> </div>
</div> </div>
</section> </section>

Loading…
Cancel
Save