Add pagination for post single page. Close #22

This commit is contained in:
Dmitry Kolosov 2020-06-07 14:20:40 +03:00
parent 9ea38661fb
commit 899d9fd52d
4 changed files with 36 additions and 1 deletions

View file

@ -351,11 +351,18 @@ article img {
color: #333333;
}
.pagination-item a:hover, .pagination-item a:focus {
.pagination-item a:hover, .pagination-item a:focus {
color: #a31d1d;
border-bottom: 0;
}
.post-pagination .pagination-item {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 16em;
}
/* Footer */
footer {
@ -418,4 +425,8 @@ ul.language-select > li {
header nav a {
margin-left: 5%;
}
.post-pagination .pagination-item {
max-width: 10em;
}
}