Skip to content

Commit 5ca449e

Browse files
update...
1 parent 5db935e commit 5ca449e

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

assets/css/index.css

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,30 @@ html {
350350
margin-bottom: 10px;
351351
}
352352

353+
.load-more-btn {
354+
display: inline-block;
355+
padding: 10px 24px;
356+
font-size: 16px;
357+
color: #fff;
358+
background-color: #007acc;
359+
border: none;
360+
border-radius: 6px;
361+
text-decoration: none;
362+
transition: background-color 0.3s ease, transform 0.2s ease;
363+
cursor: pointer;
364+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
365+
}
366+
367+
.load-more-btn:hover {
368+
background-color: #005fa3;
369+
transform: translateY(-2px);
370+
}
371+
372+
.load-more-btn:active {
373+
background-color: #004b82;
374+
transform: translateY(0);
375+
}
376+
353377
/* Footer Section Styling */
354378
/* CSS */
355379
.custom-footer {

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ <h2 class="showcase-title">Explore Our Projects</h2>
130130

131131
<!-- Project Grid where dynamic content will be added -->
132132
<div id="project-grid" class="project-grid"></div>
133-
<a href="#">Load more</a>
133+
<a href="#" class="load-more-btn">Load more</a>
134+
134135
</div>
135136
</section>
136137

0 commit comments

Comments
 (0)