CiCitation au centre

This commit is contained in:
Tibo
2020-01-25 12:37:13 +01:00
parent 08db42c397
commit 47c04539a1
2 changed files with 19 additions and 9 deletions
+11 -9
View File
@@ -243,22 +243,24 @@ p img{
line-height: 9pt;
}
blockquote{
// align-items: center;
.pagequote{
position: absolute;
background-image: url("/motifs/croix.png");
background-size: 0.4cm;
width: calc(100% + (#{$marge} + #{$fond-perdu})*2);
height: calc(100% + (#{$marge} + #{$fond-perdu})*2);
margin-left: calc(-#{$marge} - #{$fond-perdu} );
margin-top: calc(-#{$marge} - #{$fond-perdu}) !important;
left:0;
top:0;
height: calc(100% + (#{$marge} + #{$fond-perdu})*2);
margin-left: calc(-#{$marge} - #{$fond-perdu} );
margin-top: calc(-#{$marge} - #{$fond-perdu}) !important;
left:0;
top:0;
padding: 2cm;
break-before: always;
break-after: always;
// display: flex;
display: flex;
justify-content: center;
}
blockquote{
& p{
position: relative;
+8
View File
@@ -152,6 +152,14 @@ export default {
layouts.forEach(l=>{
l.classList.add("full-layout");
});
// Centrer les citations
let citations = Array.from(document.querySelectorAll("blockquote"));
citations.forEach((citation, i) => {
let l = citation.closest(".layout");
l.classList.add("pagequote");
console.log(l);
});
});
});
});