123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- .body,
- .body:before,
- .body:after { position: absolute; }
- .body:before,
- .body:after { z-index: 500; }
- .body {
- top: $page-margin-top;
- bottom: $page-margin-bottom;
- }
- .bloc { position: absolute; z-index: 500; }
- .body:before,
- .body:after {
- display: block;
- font-family: sans-serif;
- font-size: 6pt;
- line-height: $line-height;
- letter-spacing: 0.25pt;
- z-index: 500;
- }
- .paper:nth-child(odd) .body:before { content: "Tous, des sang-mélés"; }
- .paper:nth-child(even) .body:before { content: "Tous, des sang-mélés"; }
- .body:after { content: counter(folio); z-index: 499;}
- html:not(.facing) .paper:nth-child(odd) .body,
- html.facing .paper:nth-child(even) .body {
- right: $page-margin-outside;
- left: $page-margin-inside;
- }
- html:not(.facing) .paper:nth-child(even) .body,
- html.facing .paper:nth-child(odd) .body {
- left: $page-margin-outside;
- right: $page-margin-inside;
- }
- #flow-main {
- position: relative;
- -webkit-flow-into: flow-main;
- flow-into: flow-main;
- }
- .flow-main {
- -webkit-flow-from: flow-main;
- flow-from: flow-main;
- }
|