Files
popsu_html2print/src/css/gabarits.scss
T
2019-07-19 12:57:08 +02:00

54 lines
844 B
SCSS

@import 'parametres';
body {
font-size: $font-de-base;
counter-reset: footnote;
}
@media print {
@page {
size: $largeur $hauteur;
margin: $marge;
bleed: $fond-perdu;
}
@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: 0;
@bottom-left {
content: unset;
}
@bottom-right {
content: unset;
}
}
@page nofolio :left {
@bottom-left {
content: unset;
}
}
@page nofolio :right {
@bottom-right {
content: unset;
}
}
}