Add prev and next navigation

This commit is contained in:
2024-10-16 22:09:51 +02:00
parent ae7126bc19
commit 1b222217a1
4 changed files with 125 additions and 12 deletions

View File

@@ -66,7 +66,7 @@ section {
}
article {
padding: 0 10px;
padding: 0 10px 50px 10px;
}
h1, h2, h3 {
@@ -76,6 +76,7 @@ h1, h2, h3 {
h1 {
font-size: 2em;
clear: both;
}
h2 {
@@ -98,6 +99,29 @@ p.imagetext {
margin-bottom: 0.1em;
}
p.prevnext {
margin: 0;
a {
display: inline-block;
}
a.prev {
float: left;
}
a.prev:before {
content: '↫ ';
}
a.next {
float: right;
}
a.next:after {
content: ' ↬';
}
}
p.date {
margin: 0;
}
p.image {
margin: 0;
img {