1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .pagedjs_page_content > div {
- height: 100%;
- }
- .layout {
- display: flex;
- flex-direction: column;
- height: 100%;
- }
- .no-folio {
- page: nofolio;
- }
- .blank-page {
- page-break-after: always;
- }
- .image-bleed {
- position: absolute;
- width: calc(100% + #{$fond-perdu} * 2);
- height: calc(100% + #{$fond-perdu} * 2);
- margin-left: -$fond-perdu;
- margin-top: -$fond-perdu;
- }
- .image-cover {
- page: imagecover;
- background-size: cover;
- background-position: center;
- background-color: lightgray;
- background-repeat: no-repeat;
- }
- .cover-left {
- background-position: 0 50%;
- }
- .cover-right {
- background-position: -148mm 50%;
- }
- .grow {
- flex: 1;
- }
- .column {
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .justify-end {
- justify-content: flex-end;
- }
- .canbreak {
- page-break-before: always;
- }
- .v-center {
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
|