18 lines
405 B
CSS
18 lines
405 B
CSS
@page {
|
|
size: a4 portrait;
|
|
margin: 25mm 10mm 25mm 10mm;
|
|
counter-increment: page;
|
|
font-family: "Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
white-space: pre;
|
|
color: grey;
|
|
@bottom-left {
|
|
content: '© 2020 bruno@clicclac.info';
|
|
}
|
|
@bottom-center {
|
|
content: string(chapter);
|
|
}
|
|
@bottom-right {
|
|
content: 'Page ' counter(page);
|
|
}
|
|
}
|