36 lines
380 B
CSS
36 lines
380 B
CSS
@page {
|
|
size: A4;
|
|
margin: 20mm 15mm 26mm 15mm;
|
|
background: rgba(255, 255, 255, 1);
|
|
}
|
|
|
|
@page {
|
|
@bottom-center {
|
|
content: string(title);
|
|
}
|
|
}
|
|
|
|
h2 {
|
|
break-before: page;
|
|
}
|
|
|
|
.chapter > h2 {
|
|
string-set: title content(text);
|
|
}
|
|
|
|
#chapter-2 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
p {
|
|
font-size: 1rem;
|
|
margin: 0mm 0mm 10mm 0mm;
|
|
}
|
|
|
|
img {
|
|
width: 100%;
|
|
}
|
|
|
|
li p {
|
|
margin-bottom: 0;
|
|
}
|