Template

Book/styles.css

From Dogcraft Wiki

.book-page-container {
	counter-reset: pages 0;
}

.book-page-container > div {
	margin-bottom: 2rem;
}

.book-page-container div.poem {
	position: relative;
}

.book-page-container div.poem::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 13:18. (9 hours ago)