Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changes made on Events page #1573

Merged
merged 2 commits into from
Jun 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions Iskcon/event.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ <h1 class="text-xl md:text-3xl mt-2 uppercase tracking-widest text-indigo-600 fo
<div
class="showImage bg-yellow-50 rounded-full shadow-2xl grow">
<img src="../Images/iskonfounder.webp" alt="iskconFounder"
class=" w-full h-full p-12 rounded-full shadow-2xl " />
class=" hover-image w-full h-full p-12 rounded-full shadow-2xl " />

</div>
<div class="about text-xs mt-4 text-center text-indigo-600">
Expand Down Expand Up @@ -106,22 +106,24 @@ <h1 class="text-xl md:text-3xl mt-2 uppercase tracking-widest text-indigo-600 fo

class="upcomingEvents h-auto lg:h-[129vh] flex flex-col px-8 py-8 lg:my-0 items-center justify-evenly ">
<h1 class="font-semibold uppercase text-md text-indigo-600 mb-5">

<br><br><br>
<span class="border-b-4 pb-1 border-double border-b-indigo-600 ">Upcoming Events</span>
</h1>

<!-- Iskcon cards data start -->
<div class="search-container mt-4 flex items-center justify-center space-x-4">
<input type="text" id="search-bar" class="px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring focus:border-blue-300" placeholder="Search by state">
<div class="search-container relative mt-4 flex items-center justify-center space-x-4">
<input type="text" id="search-bar" class="px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring focus:border-blue-300" placeholder="Search">
<button id="search-button" class="px-4 py-2 bg-emerald-400 text-white uppercase tracking-widest rounded-md hover:bg-indigo-900 transition duration-300 ease-in-out">
Search
</button>
<div class="absolute max-h-80 min-w-80 bg-white top-12 right-16 overflow-y-scroll overflow-x-hidden" id="search-results"></div>
</div>


<div
class="cards my-8 w-full justify-center place-items-center">
<div class="swiper-container">
<div class="swiper-wrapper flex-wrap justify-center gap-4">
<div class="swiper-wrapper flex-wrap justify-center gap-8">
</div>
<div class="swiper-pagination"></div>
</div>
Expand All @@ -131,6 +133,8 @@ <h1 class="font-semibold uppercase text-md text-indigo-600 mb-5">


<!-- Footer -->
<br><br><br><br>
<br><br><br><br>
<footer class="customFooter bg-slate-900 py-4 px-8 lg:px-24 flex flex-col">

</footer>
Expand All @@ -145,4 +149,4 @@ <h1 class="font-semibold uppercase text-md text-indigo-600 mb-5">
<script src="./event.js"></script>

</body>
</html>
</html>
5 changes: 5 additions & 0 deletions commonStyles.css
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,11 @@ footer {
animation: fadeup 1s 1;
}

.hover-image:hover {
transform: scale(1.2);
transition: transform 0.2s ease-in-out;
}

@keyframes fadeup {
0%{
opacity: 0;
Expand Down