Skip to content

Commit

Permalink
Merge pull request #4828 from SrijaVuppala295/mi
Browse files Browse the repository at this point in the history
Refactor Chapter Card Text Based on Themes and enhancing the total page !!
  • Loading branch information
sailaja-adapa authored Nov 9, 2024
2 parents 28a736d + 10159fc commit 6d6c93f
Showing 1 changed file with 111 additions and 35 deletions.
146 changes: 111 additions & 35 deletions mindful-living.html
Original file line number Diff line number Diff line change
Expand Up @@ -417,59 +417,135 @@
#chaps {
margin-top: 150px; /* Adjust the margin-top value as needed */
}
</style>
/* Ensure the card itself has a border and the container is defined */
.chapter-card {
background-color: white; /* Initial background color */
border-radius: 8px;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow effect for depth */
transition: all 0.3s ease; /* Smooth transition for all changes */
}

<section class="section chapters" id="chapters">
<div class="container" id="chaps">
/* Apply hover effect for color changes */
.chapter-card:hover {
background-color: #ffb6b9; /* Change background color to pink on hover */
}

/* Apply hover effect for the heading to darken its color */
.chapter-card:hover .card-title {
color: #b36b6b; /* Darker shade of the title */
}

/* Bold and large heading */
.card-title {
font-size: 2em; /* Increase font size */
font-weight: bold; /* Make the title bold */
color: #333; /* Default color */
transition: color 0.3s ease; /* Smooth color transition */
}

/* Apply hover effect for subtitle and text color */
.chapter-card:hover .card-subtitle,
.chapter-card:hover .card-text {
color: #ffffff; /* Change text color to white */
}

<p class="section-subtitle"></p>
/* Subtitle and text default colors */
.card-subtitle {
color: #777; /* Subtitle color */
}

.card-text {
color: #444; /* Default text color */
}
h2.section-title {
margin-top: -30px; /* Adjust upwards */
margin-bottom: 20px; /* Adjust spacing below */
}
.header {
position: fixed;
top: 0;
width: 100%;
z-index: 1000; /* Ensures it stays on top of other content */
margin-top: 45px;
margin-left: 9rem;
}
.navbar-link {
color: black !important;
}

<h2 class="h2 section-title has-underline">
Explore New Worlds
<span class="span has-before"></span>
</h2>
.dark-mode .navbar-link {
color: white !important;
}
</style>

<ul class="grid-list">
<section class="section chapters" id="chapters">
<div class="container w-full mx-auto flex flex-col" id="chaps">
<!-- <p class="section-subtitle"></p> -->

<li>
<a href="books.html" class="chapter-card">
<h2 class="h2 section-title has-underline" style="margin-bottom: 50px;">
Explore New Worlds
<span class="span has-before"></span>
</h2>

<p class="card-subtitle"></p>
<ul class="grid grid-cols-3 justify-center">

<h3 class="h3 card-title"> "Cultivate Mindfulness Daily"</h3>
<li>
<div class="chapter-card" style="height: 550px;">

<p class="card-text">
</p>
<h3 class="h3 card-title"> "Cultivate Mindfulness Daily"</h3>
<p class="card-subtitle mt-20 italic">Love, One Page at a Time</p>

</a>
</li>
<p class="card-text mt-12">
Discover stories that tug at your heartstrings and immerse yourself in a world where every page whispers
romance. Whether it's a classic love story or a modern-day fairytale, each book opens a door to
unforgettable emotions. Swap and find your next literary soulmate today!
<br><br>
As you turn the pages, you’ll find pieces of yourself in these stories, reminding you that love isn’t just found—it’s lived.
</p>

<li>
<a href="books.html" class="chapter-card">
</div>
</li>

<p class="card-subtitle"></p>
<li>
<div class="chapter-card" style="height: 550px;">

<h3 class="h3 card-title">"Nurture Your Well-Being"</h3>
<h3 class="h3 card-title">"Nurture your Well-Being"</h3>

<p class="card-text">
</p>
<p class="card-subtitle italic">Leave the Ordinary Behind</p>

</a>
</li>

<li>
<div class="chapter-card">
<p class="card-subtitle"></p>
<h3 class="h3 card-title">"Journey to Self-Discovery"</h3>
<p class="card-text mt-10">
Take a break from the ordinary and step into the extraordinary. Let books transport you into realms
where magic is real, heroes rise, and challenges are overcome. Explore our collection, swap your
favorites, and find stories that make your imagination soar.
<br><br>
Books are a soothing retreat when reality becomes too demanding.
</p>

<p class="card-text">
</p>
</div>
</li>

<li>
<div class="chapter-card" style="height: 550px;">


<h3 class="h3 card-title">"Journey to Self Discovery"</h3>
<p class="card-subtitle italic">Adventure Awaits in Every Chapter</p>

<p class="card-text mt-10">
Books are portals to adventures waiting to be explored—journey through ancient kingdoms, futuristic
landscapes, or distant galaxies. With each turn of the page, you’ll uncover new cultures, ideas, and
perspectives. Dive in and experience the thrill of discovery, one book at a time!
<br><br>
Adventure is waiting just one page away, and the best part is that your next thrill lies in a book swap
</p>

</div>
</li>
</div>
</li>
</ul>
</div>
</section>
</div>
</section>

<!--THE BOOKS-->
<h2 class="h2 section-title has-underline" data-sr-id="11" style="visibility: visible; opacity: 1; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transition: opacity 2s cubic-bezier(0.5, 0, 0, 1) 0.1s, transform 2s cubic-bezier(0.5, 0, 0, 1) 0.1s;">
Expand Down

0 comments on commit 6d6c93f

Please sign in to comment.