Finish table of contents and pagination

This commit is contained in:
Hazem Krimi
2023-11-16 16:59:45 +01:00
parent 64723c3860
commit ad19dc44c3
18 changed files with 273 additions and 67 deletions
+41
View File
@@ -0,0 +1,41 @@
.pagination {
display: flex;
justify-content: end;
align-items: center;
}
.pagination {
display: flex;
column-gap: 1rem;
}
.pagination .pagination ul,
.pagination li {
list-style: none;
}
.pagination a {
border-radius: 0.5625rem;
background-color: #8b8b8b;
color: var(--white);
padding: 0.25rem 0.75rem;
display: inline-flex;
justify-content: center;
align-items: center;
text-decoration: none;
}
.pagination a.first,
.pagination a.last {
background-color: #606060;
}
.pagination a.active {
background-color: #232323;
}
@media only screen and (max-width: 768px) {
.pagination {
justify-content: center;
}
}