Skip to content

Commit acf7721

Browse files
Implemented live search functionality and fixed the social link UI issue in the masthead page (#510)
1 parent eb51428 commit acf7721

File tree

2 files changed

+51
-18
lines changed

2 files changed

+51
-18
lines changed

masthead.css

Lines changed: 25 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -409,11 +409,35 @@ nav .fa {
409409
border-radius: 15px;
410410
padding: 1.5rem;
411411
color: #780000;
412-
/* font-family: 'Crimson Text', serif; */
413412
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
414413
transition: transform 0.3s ease, box-shadow 0.3s ease;
414+
415+
/* NEW: make card a flex container */
416+
display: flex;
417+
flex-direction: column;
418+
}
419+
420+
.team-card .team-card-social-link-wrapper {
421+
margin-top: auto; /* Push this to bottom */
422+
padding: 5px;
423+
}
424+
425+
.insta-link {
426+
display: inline-block;
427+
margin-top: 0.5rem;
428+
text-decoration: none;
429+
color: #fdf0d5;
430+
background-color: #780000;
431+
padding: 8px 14px;
432+
border-radius: 25px;
433+
transition: background-color 0.3s ease;
434+
}
435+
436+
.insta-link:hover {
437+
background-color: #a30000;
415438
}
416439

440+
417441
.team-card:hover {
418442
background: linear-gradient(to bottom, #bcaf87, #fdf0d5, #cdb2ad);
419443
transform: translateY(-5px);
@@ -436,21 +460,6 @@ nav .fa {
436460
line-height: 1.6;
437461
}
438462

439-
.insta-link {
440-
display: inline-block;
441-
margin-top: 1rem;
442-
text-decoration: none;
443-
color: #fdf0d5;
444-
background-color: #780000;
445-
padding: 8px 14px;
446-
border-radius: 25px;
447-
transition: background-color 0.3s ease;
448-
}
449-
450-
.insta-link:hover {
451-
background-color: #a30000;
452-
}
453-
454463
/* .mh10{
455464
width: 50%;
456465
margin: auto;

masthead.html

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,9 @@ <h3>Holly Wilcox Routledge </h3>
258258

259259
<h3>Mona </h3>
260260
<p class="role">Editor/Prose Reviewer</p>
261-
<p class="intro">Simone, or Mona, is a fifteen-year-old from NJ, USA. She's been writing prose & poetry for personal enjoyment for the last four years. Outside of writing, she loves books, fashion, singing, desserts, and action movies. She can't wait to see how Cawnpore Magazine grows!</p>
261+
<p class="intro">Simone, or Mona, is a fifteen-year-old from NJ, USA. She's been writing prose & poetry for personal enjoyment for the last four years. Outside of writing, she loves books, fashion, singing, desserts, and action movies. She can't wait to see how Cawnpore Magazine grows!
262+
263+
When she’s not lost in a new novel or jotting down story ideas in her journal, you’ll find her experimenting with creative photography, or discovering quaint coffee shops in her neighborhood. She hopes to one day publish her own collection of short stories and travel the world to gather tales from different cultures.!</p>
262264

263265
<p class="team-card-social-link-wrapper">You can connect with her on Instagram <a href="https://instagram.com/twinstarbow" target="_blank" class="insta-link">@twinstarbow</a></p>
264266

@@ -270,7 +272,7 @@ <h3>Mona </h3>
270272
<div class="team-card">
271273
<h3>Swapna Selvam </h3>
272274
<p class="role">Editor</p>
273-
<p class="intro">Swapna is currently in year 11. She has won awards for drama performances, and spelling bees and has made speeches for her school. </p>
275+
<p class="intro">Swapna is currently in Year 11. She has won awards for drama performances and spelling bees, and has delivered speeches representing her school. A passionate communicator, she enjoys the art of storytelling both on stage and on paper. Outside of her academic achievements, Swapna is an avid reader with a particular love for historical fiction and mystery novels. She also spends her free time mentoring younger students in public speaking, participating in debate clubs, and volunteering at local community events. </p>
274276

275277
<p class="team-card-social-link-wrapper">You can connect with her on Instagram <a href="https://instagram.com/swolenas" target="_blank" class="insta-link">@swolenas</a></p>
276278

@@ -786,6 +788,28 @@ <h3>Subscribe to our Newsletter</h3>
786788
<p>&copy; <span id="year"></span> THE CAWNPORE — ALL RIGHTS RESERVED</p>
787789
</div>
788790
</footer>
791+
<script>
792+
document.addEventListener("DOMContentLoaded", function () {
793+
const searchInput = document.getElementById("searchBar"); // Change ID if needed
794+
const teamCards = document.querySelectorAll(".team-card");
795+
796+
searchInput.addEventListener("input", function () {
797+
const query = searchInput.value.trim().toLowerCase();
798+
799+
teamCards.forEach(card => {
800+
const name = card.querySelector("h3").textContent.toLowerCase();
801+
802+
// Show if name starts with the query
803+
if (query === "" || name.startsWith(query)) {
804+
card.style.display = "";
805+
} else {
806+
card.style.display = "none";
807+
}
808+
});
809+
});
810+
});
811+
</script>
812+
789813

790814
<script src="index.js" ></script>
791815

0 commit comments

Comments
 (0)