add base styles for easily placing page counters at any arbitrary place

This commit is contained in:
Gered 2017-05-04 07:49:43 -04:00
parent 6c8e4c6898
commit 7621ed74f2

View file

@ -85,3 +85,9 @@ li {
.text-right { .text-right {
text-align: right; text-align: right;
} }
#pdf-page-number:before {
content: counter(page);
}
#pdf-page-count:before {
content: counter(pages);
}