23 lines
464 B
CSS
23 lines
464 B
CSS
.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;
|
|
} |