49 lines
964 B
CSS
49 lines
964 B
CSS
.pagination-button {
|
|
display: inline-block;
|
|
margin: 0 0.25rem;
|
|
padding: 0.5rem 0.75rem;
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
line-height: 1.5;
|
|
color: #6c757d;
|
|
background-color: #fff;
|
|
border: 1px solid #6c757d;
|
|
border-radius: 0.25rem;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
transition: all 0.2s ease-in-out;
|
|
}
|
|
|
|
.pagination-button:hover {
|
|
background-color: #6c757d;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.pagination-button.active {
|
|
background-color: #6c757d;
|
|
color: #fff;
|
|
border-color: #6c757d;
|
|
cursor: default;
|
|
}
|
|
|
|
.pagination-button.disabled {
|
|
background-color: #e9ecef;
|
|
border-color: #dee2e6;
|
|
color: #6c757d;
|
|
cursor: not-allowed;
|
|
pointer-events: none;
|
|
}
|
|
|
|
@media (max-width: 576px) {
|
|
.pagination-button {
|
|
padding: 0.4rem 0.6rem;
|
|
font-size: 0.8rem;
|
|
}
|
|
}
|
|
|
|
#pagination-info {
|
|
font-size: 0.875rem;
|
|
color: #6c757d;
|
|
margin: 8px 0;
|
|
} |