changes
This commit is contained in:
@@ -20,6 +20,8 @@
|
|||||||
}
|
}
|
||||||
.bibhuti{
|
.bibhuti{
|
||||||
font-family: 'pacifico', cursive;
|
font-family: 'pacifico', cursive;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 16px;
|
||||||
|
|
||||||
}
|
}
|
||||||
/* @font-face {
|
/* @font-face {
|
||||||
@@ -611,6 +613,15 @@ z-index: 10000;
|
|||||||
box-shadow: 0 5px 15px rgba(128, 128, 128, 0.377);
|
box-shadow: 0 5px 15px rgba(128, 128, 128, 0.377);
|
||||||
transition: .3s all ease-in-out;
|
transition: .3s all ease-in-out;
|
||||||
}
|
}
|
||||||
|
.col.col-md-3:nth-child(1) .course-box img, .col.col-md-3:nth-child(2) .course-box img{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.col.col-md-3:nth-child(4) .course-box img {
|
||||||
|
width: 125px;
|
||||||
|
}
|
||||||
|
.col.col-md-3:nth-child(4) .course-box img {
|
||||||
|
width: 120px;
|
||||||
|
}
|
||||||
|
|
||||||
.how-it-work input, .how-it-work textarea {
|
.how-it-work input, .how-it-work textarea {
|
||||||
border: 1px solid #E3E3E3;
|
border: 1px solid #E3E3E3;
|
||||||
@@ -1190,6 +1201,15 @@ font-weight: bold;
|
|||||||
padding: 40px 0;
|
padding: 40px 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
.numbering{
|
||||||
|
background-color: white;
|
||||||
|
padding: 0px 20px;
|
||||||
|
border-radius: 100%;
|
||||||
|
font-size: 32px;
|
||||||
|
color: #CE171F;
|
||||||
|
font-weight: 400;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
.free-resources-content .first-row{
|
.free-resources-content .first-row{
|
||||||
border: 1px solid #E5E5E5;
|
border: 1px solid #E5E5E5;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
3
public/raffles/assets/css/utility.min.css
vendored
3
public/raffles/assets/css/utility.min.css
vendored
@@ -7519,6 +7519,9 @@
|
|||||||
.object-cover {
|
.object-cover {
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
}
|
}
|
||||||
|
.object-contain {
|
||||||
|
object-fit: contain;
|
||||||
|
}
|
||||||
.objpos-center {
|
.objpos-center {
|
||||||
object-position: center;
|
object-position: center;
|
||||||
}
|
}
|
||||||
|
BIN
public/raffles/assets/images.zip
Normal file
BIN
public/raffles/assets/images.zip
Normal file
Binary file not shown.
@@ -743,6 +743,7 @@ doneBtn.addEventListener("click", () => {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
// Final monkey image
|
// Final monkey image
|
||||||
|
|
||||||
// document.addEventListener("DOMContentLoaded", function () {
|
// document.addEventListener("DOMContentLoaded", function () {
|
||||||
|
@@ -604,6 +604,21 @@
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
<script>
|
||||||
|
document.addEventListener('DOMContentLoaded', function () {
|
||||||
|
const tabs = document.querySelectorAll('.accordion-content.resource');
|
||||||
|
|
||||||
|
tabs.forEach(tab => {
|
||||||
|
tab.addEventListener('click', function () {
|
||||||
|
// Remove highlight from all
|
||||||
|
tabs.forEach(t => t.classList.remove('highlight-tab'));
|
||||||
|
|
||||||
|
// Add highlight to clicked one
|
||||||
|
this.classList.add('highlight-tab');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@@ -96,7 +96,7 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col col-md-2">
|
<div class="col col-md-2">
|
||||||
<div class="sm:w-50percent w-full h-70">
|
<div class="sm:w-50percent w-full h-70">
|
||||||
<img class="w-full h-full" src="{{ $item->institution?->image }}"
|
<img class="w-full h-full object-contain" src="{{ $item->institution?->image }}"
|
||||||
alt="">
|
alt="">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -37,7 +37,7 @@
|
|||||||
aria-labelledby="heading-question-1">
|
aria-labelledby="heading-question-1">
|
||||||
|
|
||||||
@foreach ($countries as $country)
|
@foreach ($countries as $country)
|
||||||
<div class="accordion-content text-16 leading-20 text-black bg-white px-10 flex items-center gap-10"
|
<div class="accordion-content resource text-16 leading-20 text-black bg-white px-10 flex items-center gap-10 "
|
||||||
onclick="showTab('tab{{ $country->title }}')">
|
onclick="showTab('tab{{ $country->title }}')">
|
||||||
<i class="fa-solid fa-angles-right text-18 text-brand"></i>
|
<i class="fa-solid fa-angles-right text-18 text-brand"></i>
|
||||||
<p>{{ $country->title }}</p>
|
<p>{{ $country->title }}</p>
|
||||||
|
@@ -21,7 +21,8 @@
|
|||||||
<li class="px-20 tab-btn cursor-pointer fade {{ $loop->first ? 'show active' : '' }} "
|
<li class="px-20 tab-btn cursor-pointer fade {{ $loop->first ? 'show active' : '' }} "
|
||||||
role="tabpanel" onclick="showTab('tabs_{{ $index + 1 }}')">
|
role="tabpanel" onclick="showTab('tabs_{{ $index + 1 }}')">
|
||||||
<div class="text-17 font-bold flex gap-10 items-center">
|
<div class="text-17 font-bold flex gap-10 items-center">
|
||||||
<img class="w-40" src="assets/images/icons/one.svg" alt="">
|
<p class="numbering">1</p>
|
||||||
|
{{-- <img class="w-40" src="assets/images/icons/one.svg" alt=""> --}}
|
||||||
<h5 class="text-16 p-0 m-0">{{ $child->title }}</h5>
|
<h5 class="text-16 p-0 m-0">{{ $child->title }}</h5>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
@@ -21,7 +21,8 @@
|
|||||||
<li class="px-20 tab-btn cursor-pointer fade {{ $loop->first ? 'show active' : '' }} "
|
<li class="px-20 tab-btn cursor-pointer fade {{ $loop->first ? 'show active' : '' }} "
|
||||||
role="tabpanel" onclick="showTab('tabs_{{ $index + 1 }}')">
|
role="tabpanel" onclick="showTab('tabs_{{ $index + 1 }}')">
|
||||||
<div class="text-17 font-bold flex gap-10 items-center">
|
<div class="text-17 font-bold flex gap-10 items-center">
|
||||||
<img class="w-40" src="assets/images/icons/one.svg" alt="">
|
<p class="numbering">1</p>
|
||||||
|
{{-- <img class="w-40" src="assets/images/icons/one.svg" alt=""> --}}
|
||||||
<h5 class="text-16 p-0 m-0">{{ $child->title }}</h5>
|
<h5 class="text-16 p-0 m-0">{{ $child->title }}</h5>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
$last_word = array_pop($words);
|
$last_word = array_pop($words);
|
||||||
$new_title = implode(' ', $words);
|
$new_title = implode(' ', $words);
|
||||||
@endphp
|
@endphp
|
||||||
<div class="container py- scroll-section" id="achievement" data-name="Achievement">
|
<div class="container py- scroll-section" id="Achievement" data-name="Achievement">
|
||||||
<div class="w-full block section">
|
<div class="w-full block section">
|
||||||
<div class="w-500 sm:w-full flex flex-col mx-auto text-center p-10">
|
<div class="w-500 sm:w-full flex flex-col mx-auto text-center p-10">
|
||||||
<div class="ld-fancy-heading relative mb-20 animation-element">
|
<div class="ld-fancy-heading relative mb-20 animation-element">
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
<div id="lqd-contents-wrap">
|
<div id="lqd-contents-wrap">
|
||||||
<section class="lqd-section banner pt-140 pb-80 scroll-section" id="banner" data-name="Banner">
|
<section class="lqd-section banner pt-140 pb-80 scroll-section" id="Banner" data-name="Banner">
|
||||||
<div class="lqd-particles-bg-wrap lqd-overlay flex pointer-events-none">
|
<div class="lqd-particles-bg-wrap lqd-overlay flex pointer-events-none">
|
||||||
<div class="ld-particles-container relative w-full lqd-particles-as-bg lqd-overlay flex h-450">
|
<div class="ld-particles-container relative w-full lqd-particles-as-bg lqd-overlay flex h-450">
|
||||||
<div class="ld-particles-inner lqd-overlay flex pointer-events-none" id="lqd-particle-banner"
|
<div class="ld-particles-inner lqd-overlay flex pointer-events-none" id="lqd-particle-banner"
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
<section class="lqd-section how-it-work scroll-section" id="contact" data-name="Contact">
|
<section class="lqd-section how-it-work scroll-section" id="Contact" data-name="Contact">
|
||||||
<div class="container w-full block mb-35 section">
|
<div class="container w-full block mb-35 section">
|
||||||
<div class="w-500 sm:w-full flex flex-col mx-auto text-center p-10">
|
<div class="w-500 sm:w-full flex flex-col mx-auto text-center p-10">
|
||||||
<div class="ld-fancy-heading relative mb-20 animation-element">
|
<div class="ld-fancy-heading relative mb-20 animation-element">
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
<section class="course-section">
|
<section class="course-section">
|
||||||
|
|
||||||
|
|
||||||
<div class="container mb-20 scroll-section" id="course" data-name="Course">
|
<div class="container mb-20 scroll-section" id="Course" data-name="Course">
|
||||||
<div class="w-full block mb-35 section">
|
<div class="w-full block mb-35 section">
|
||||||
<div class="w-500 sm:w-full flex flex-col mx-auto text-center p-10">
|
<div class="w-500 sm:w-full flex flex-col mx-auto text-center p-10">
|
||||||
<div class="ld-fancy-heading relative mb-20 animation-element">
|
<div class="ld-fancy-heading relative mb-20 animation-element">
|
||||||
@@ -21,8 +21,8 @@
|
|||||||
@foreach ($firstCourse->custom as $index => $data)
|
@foreach ($firstCourse->custom as $index => $data)
|
||||||
<div class=" col col-md-3">
|
<div class=" col col-md-3">
|
||||||
<a href="course-finder.php" class=" course-box rounded-10 ">
|
<a href="course-finder.php" class=" course-box rounded-10 ">
|
||||||
<div class="w-100">
|
<div class="">
|
||||||
<img class="w-full " src="{{ asset($firstCourse->images[$index]) }}" alt="">
|
<img class="w-ful " src="{{ asset($firstCourse->images[$index]) }}" alt="">
|
||||||
</div>
|
</div>
|
||||||
<div class="pt-10">
|
<div class="pt-10">
|
||||||
<p class=" text-16 text-white m-0">{{ $data['key'] ?? '' }}</p>
|
<p class=" text-16 text-white m-0">{{ $data['key'] ?? '' }}</p>
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
<section class="lqd-section process scroll-section " id="process" data-name="Process" data-custom-animations="true"
|
<section class="lqd-section process scroll-section " id="Process" data-name="Process" data-custom-animations="true"
|
||||||
data-ca-options='{"animationTarget": ".animation-element", "ease": "power4.out", "initValues":{"x": "-10px", "y": "10px", "opacity":0} , "animations":{"x": "0px", "y": "0px", "opacity":1}}'>
|
data-ca-options='{"animationTarget": ".animation-element", "ease": "power4.out", "initValues":{"x": "-10px", "y": "10px", "opacity":0} , "animations":{"x": "0px", "y": "0px", "opacity":1}}'>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="w-full block mb-15 section">
|
<div class="w-full block mb-15 section">
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<section class="testimonial-slides pb-30">
|
<section class="testimonial-slides pb-30">
|
||||||
|
|
||||||
<div class="container scroll-section " id="testimonial" data-name="Testimonial">
|
<div class="container scroll-section " id="Testimonial" data-name="Testimonial">
|
||||||
<div class="w-full block mb-35 section">
|
<div class="w-full block mb-35 section">
|
||||||
<div class="w-500 sm:w-full flex flex-col mx-auto text-center p-10">
|
<div class="w-500 sm:w-full flex flex-col mx-auto text-center p-10">
|
||||||
<div class="ld-fancy-heading relative mb-20 animation-element">
|
<div class="ld-fancy-heading relative mb-20 animation-element">
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="ld-fancy-heading relative animation-element">
|
<div class="ld-fancy-heading relative animation-element">
|
||||||
<p class="ld-fh-element mb-0/5em inline-block relative text-18 font-light leading-25 text-ter">
|
<p class="ld-fh-element mb-0/5em inline-block relative text-18 font-light leading-25 text-ter">
|
||||||
Hear what our students have to say about Raffles
|
Hear what our students & their guardians have to say.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
<div class="container scroll-section" id="university" data-name="University">
|
<div class="container scroll-section" id="University" data-name="University">
|
||||||
<div class="w-full block mb-35 section">
|
<div class="w-full block mb-35 section">
|
||||||
<div class="w-full sm:w-full flex flex-col mx-auto text-center p-10">
|
<div class="w-full sm:w-full flex flex-col mx-auto text-center p-10">
|
||||||
<div class="ld-fancy-heading relative mb-20 animation-element">
|
<div class="ld-fancy-heading relative mb-20 animation-element">
|
||||||
|
Reference in New Issue
Block a user