gabarits.scss 848 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. bleed: $fond-perdu;
  11. }
  12. @page :left {
  13. @bottom-left {
  14. content: counter(page);
  15. font-size: 12pt;
  16. font-family: 'Duke POPSU';
  17. transform: translateX(-1.4cm);
  18. }
  19. }
  20. @page :right {
  21. @bottom-right {
  22. content: counter(page);
  23. font-size: 12pt;
  24. font-family: 'Duke POPSU';
  25. transform: translateX(1.4cm);
  26. }
  27. }
  28. @page imagecover {
  29. size: $largeur $hauteur;
  30. margin: 0;
  31. @bottom-left {
  32. content: unset;
  33. }
  34. @bottom-right {
  35. content: unset;
  36. }
  37. }
  38. @page nofolio :left {
  39. @bottom-left {
  40. content: unset;
  41. }
  42. }
  43. @page nofolio :right {
  44. @bottom-right {
  45. content: unset;
  46. }
  47. }
  48. }