gabarits.scss 724 B

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