54 lines
848 B
SCSS
54 lines
848 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(-1.4cm);
|
|
}
|
|
}
|
|
|
|
@page :right {
|
|
@bottom-right {
|
|
content: counter(page);
|
|
font-size: 12pt;
|
|
font-family: 'Duke POPSU';
|
|
transform: translateX(1.4cm);
|
|
}
|
|
}
|
|
@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;
|
|
}
|
|
}
|
|
}
|