add a show more button

This commit is contained in:
2025-08-21 17:15:22 +02:00
parent f47aa2e1f0
commit dc32a35cfa
4 changed files with 36 additions and 2 deletions
+23
View File
@@ -0,0 +1,23 @@
.show-more-container {
text-align: center;
margin-top: 2rem;
}
.show-more-link {
display: inline-block;
color: #B0B0B0;
border: 1px solid #B0B0B0;
background-color: transparent;
padding: 12px 28px;
border-radius: 8px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
}
.show-more-link:hover {
background-color: #B0B0B0;
color: #1E1E1E;
transform: translateY(-3px);
cursor: pointer;
}