Template
Book/styles.css
From Dogcraft Wiki
.book-page-container {
counter-reset: pages 0;
}
.book-page-container > div {
position: relative;
margin-bottom: 2rem;
}
.book-page-container > div::after {
content: '(Page ' counter(pages) ' of ' attr(data-maximum-pages) ')';
position: absolute;
bottom: -2rem;
text-align: center;
width: 100%;
border-top: solid 1px gray;
color: gray;
counter-increment: pages;
}
This page was last modified on 27 January 2026, at 10:49. (9 hours ago)