Support pagination

Fixes #12
This commit is contained in:
2021-10-02 19:26:33 -05:00
parent 5613f8e6f1
commit c03c44ff2d
2 changed files with 37 additions and 1 deletions

View File

@ -96,3 +96,35 @@ ul.breadcrumb li+li:before {
ul.breadcrumb li.active a {
color: inherit;
}
/* Pagination */
.pagination {
list-style: none;
text-align: center;
}
.page-item {
display: inline;
}
.page-link {
padding: 8px 16px;
border-radius: 5px;
color: lightgray;
}
.page-item.active .page-link {
background-color: #163b64;
color: inherit;
}
.page-item.active .page-link:hover {
background-color: #2b72c0;
color: white;
}
.page-link:hover {
background-color: #444;
color: white;
text-decoration: none;
}