51 lines
724 B
SCSS
51 lines
724 B
SCSS
@import 'parametres';
|
|
|
|
@media print {
|
|
@page {
|
|
size: $largeur $hauteur;
|
|
margin: $marge;
|
|
}
|
|
@page :left {
|
|
@bottom-left {
|
|
content: counter(page);
|
|
font-size: 12pt;
|
|
font-family: 'Duke POPSU';
|
|
transform: translateX(-1cm);
|
|
}
|
|
}
|
|
@page :right {
|
|
@bottom-right {
|
|
content: counter(page);
|
|
font-size: 12pt;
|
|
font-family: 'Duke POPSU';
|
|
transform: translateX(1cm);
|
|
}
|
|
}
|
|
@page imagecover {
|
|
size: $largeur $hauteur;
|
|
margin: 0cm;
|
|
@bottom-left {
|
|
content: unset;
|
|
}
|
|
@bottom-right {
|
|
content: unset;
|
|
}
|
|
|
|
}
|
|
|
|
@page nofolio :left {
|
|
@bottom-left {
|
|
content: unset;
|
|
}
|
|
}
|
|
@page nofolio :right {
|
|
@bottom-right {
|
|
content: unset;
|
|
}
|
|
}
|
|
}
|
|
|
|
.pagedjs_sheet{
|
|
overflow: visible;
|
|
}
|