Clarification du css, Changement Readme

This commit is contained in:
2019-07-17 11:54:48 +02:00
parent 9d788ce2de
commit 6e9d29531e
7 changed files with 36 additions and 17 deletions
+1
View File
@@ -8,6 +8,7 @@ body {
@page {
size: $largeur $hauteur;
margin: $marge;
bleed:$fond-perdu;
}
@page :left {
+7 -7
View File
@@ -18,17 +18,17 @@
.image-bleed-left {
position: absolute;
width: calc(100% + 3mm);
height: calc(100% + 6mm);
margin-left: -3mm;
margin-top: -3mm;
width: calc(100% + #{$fond-perdu});
height: calc(100% + #{$fond-perdu} * 2);
margin-left: -$fond-perdu;
margin-top: -$fond-perdu;
}
.image-bleed-right {
position: absolute;
width: calc(100% + 3mm);
height: calc(100% + 6mm);
margin-top: -3mm;
width: calc(100% + #{$fond-perdu});
height: calc(100% + #{$fond-perdu} * 2);
margin-top: -$fond-perdu;
}
.image-cover {
+1
View File
@@ -3,3 +3,4 @@ $largeur: 148mm;
$hauteur: 210mm;
$marge: 2cm;
$font-de-base: 10pt;
$fond-perdu: 3mm;
+3
View File
@@ -18,4 +18,7 @@
flex: none;
box-shadow: 0 0 1px rgba(0,0,0,0.2);
}
.pagedjs_bleed {
background-color: lightpink;
}
}