gabarits.scss 822 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. @import 'parametres';
  2. body {
  3. font-size: $font-de-base;
  4. counter-reset: footnote;
  5. }
  6. @media print {
  7. @page {
  8. size: $largeur $hauteur;
  9. margin: $marge;
  10. }
  11. @page :left {
  12. @bottom-left {
  13. content: counter(page);
  14. font-size: 12pt;
  15. font-family: 'Duke POPSU';
  16. transform: translateX(-1cm);
  17. }
  18. }
  19. @page :right {
  20. @bottom-right {
  21. content: counter(page);
  22. font-size: 12pt;
  23. font-family: 'Duke POPSU';
  24. transform: translateX(1cm);
  25. }
  26. }
  27. @page imagecover {
  28. size: $largeur $hauteur;
  29. margin: 0cm;
  30. @bottom-left {
  31. content: unset;
  32. }
  33. @bottom-right {
  34. content: unset;
  35. }
  36. }
  37. @page nofolio :left {
  38. @bottom-left {
  39. content: unset;
  40. }
  41. }
  42. @page nofolio :right {
  43. @bottom-right {
  44. content: unset;
  45. }
  46. }
  47. }