mirror of https://github.com/sveltejs/svelte
33 lines
377 B
33 lines
377 B
<style>
|
|
@page vertical {
|
|
size: A4 portrait;
|
|
@top-center {
|
|
content: "Vertical";
|
|
}
|
|
}
|
|
|
|
@page :right {
|
|
@top-center {
|
|
content: "Preliminary edition";
|
|
}
|
|
|
|
@bottom-center {
|
|
content: counter(page);
|
|
}
|
|
}
|
|
|
|
@page :first {
|
|
color: green;
|
|
font-size: 20pt;
|
|
|
|
@top-left {
|
|
content: "foo";
|
|
color: blue;
|
|
}
|
|
|
|
@top-right {
|
|
content: "bar";
|
|
}
|
|
}
|
|
</style>
|