Template
Book/styles.css
From Dogcraft Wiki
m (Domino moved page Template:Books/styles.css to Template:Book/styles.css without leaving a redirect) |
mNo edit summary |
||
| Line 4: | Line 4: | ||
.book-page-container > div { | .book-page-container > div { | ||
margin-bottom: 2rem; | |||
} | |||
.book-page-container div.poem { | |||
position: relative; | position: relative; | ||
} | } | ||
.book-page-container | .book-page-container div.poem::after { | ||
content: '(Page ' counter(pages) ' of ' attr(data-maximum-pages) ')'; | content: '(Page ' counter(pages) ' of ' attr(data-maximum-pages) ')'; | ||
position: absolute; | position: absolute; | ||
Revision as of 13:18, 27 January 2026
.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. (12 hours ago)