diff --git a/database/migrations/2022_07_6_082324_create_setting_image_alts_table.php b/database/migrations/2022_08_27_082324_create_setting_image_alts_table.php similarity index 100% rename from database/migrations/2022_07_6_082324_create_setting_image_alts_table.php rename to database/migrations/2022_08_27_082324_create_setting_image_alts_table.php diff --git a/public/frontend/css/style.css b/public/frontend/css/style.css index 5be3c6f..0936dc2 100644 --- a/public/frontend/css/style.css +++ b/public/frontend/css/style.css @@ -302,7 +302,8 @@ Responsive Codes .study-sydney-section, .study-melbourne-section, .study-detail-section, -.scholarship-section{ +.scholarship-section, +.student-visa-section{ padding: 3rem 6rem; } .services-section .row, @@ -632,7 +633,8 @@ Responsive Codes .studyabroad-banner-header h5{ color: #FFFFFF; } -.study-australia-desc h1{ +.study-australia-desc h1, +.student-visa-section h1{ font-weight: 700; font-size: 40px; line-height: 60px; @@ -670,6 +672,47 @@ Responsive Codes .scholarship-desc p{ margin: 1rem 0; } +/* student visa page css */ +.student-visa-section .nav-pills .nav-link{ + background: #E5F0FF; + border-radius: 0; + font-weight: 600; + font-size: 16px; + line-height: 28px; + color: #2E2E2E; + text-align: initial; +} +.student-visa-section .nav-pills .nav-link.active{ + background-color: #E22899; + color: #FFFFFF !important; +} + +.student-visa-section .nav-link:hover{ + text-decoration: none; + color: #FFFFFF !important; + background-color: #E22899; +} + +.visa-table{ + background: #E6F0FF; + box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05); + border-radius: 12px; +} +.visa-table ul{ + padding: 0; + list-style: none; +} +.visa-table ul li a{ + text-decoration: none; + background: #E5F0FF; + border-radius: 0; + font-weight: 600; + font-size: 16px; + line-height: 28px; + color: #2E2E2E; + padding: 1rem; + border-bottom: 1px solid #AFAFAF; +} /* Footer Css */ .footer{ background: #296AC7; diff --git a/public/frontend/images/student-visa-banner.png b/public/frontend/images/student-visa-banner.png new file mode 100644 index 0000000..9844d52 Binary files /dev/null and b/public/frontend/images/student-visa-banner.png differ diff --git a/resources/views/visa.blade.php b/resources/views/visa.blade.php new file mode 100644 index 0000000..f135ad1 --- /dev/null +++ b/resources/views/visa.blade.php @@ -0,0 +1,61 @@ +@extends('layout.app') +@section('title') +Study Abroad + + + + + + +@endsection +@section('content') +
+ +
+

Student Visa

+
Visit Australia to participate in the course of study +
+
+
+
+

Student Visa

+
+ +
+

Study in Sydney

+
+ 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. +
+
...
+
...
+
...
+
...
+
+
+
+ +
+
+
+@endsection \ No newline at end of file diff --git a/routes/web.php b/routes/web.php index a6a2c4a..dd4aabf 100644 --- a/routes/web.php +++ b/routes/web.php @@ -261,5 +261,7 @@ Route::get('/study-abroad', function () { Route::get('/study-abroad-detail', function () { return view('study-abroad-detail'); }); - +Route::get('/visa', function () { + return view('visa'); +});