2023-11-14 17:46:52 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "Marianne";
|
|
|
|
src: url("marianne-regular.ttf");
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "Marianne";
|
|
|
|
src: url("marianne-bold.ttf");
|
|
|
|
font-weight: bold;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "Marianne";
|
|
|
|
src: url("marianne-thin.ttf");
|
|
|
|
font-weight: 100; // weasy print n"accepte pas lighter
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
@page {
|
|
|
|
size: A4;
|
|
|
|
margin: 17mm 17mm 34mm; // add margin at the bottom to add address
|
|
|
|
|
|
|
|
@bottom-center {
|
|
|
|
font-size: 8pt;
|
|
|
|
content: counter(page) " / " counter(pages);
|
|
|
|
margin-top: 17mm;
|
|
|
|
}
|
|
|
|
|
|
|
|
@bottom-left {
|
|
|
|
content: element(footer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#attestation {
|
|
|
|
@media screen {
|
2023-12-20 22:11:43 +01:00
|
|
|
.a4-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between; // This will push the footer down
|
|
|
|
max-width: 21cm;
|
|
|
|
height: 29.7cm;
|
|
|
|
padding: 17mm;
|
|
|
|
margin: 0 auto;
|
|
|
|
background: #FFFFFF;
|
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); // Optional: for better visualization
|
|
|
|
}
|
2023-11-14 17:46:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
font-family: Marianne;
|
|
|
|
|
2023-12-20 22:11:43 +01:00
|
|
|
header {
|
2023-11-14 17:46:52 +01:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2023-12-20 22:11:43 +01:00
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2023-11-14 17:46:52 +01:00
|
|
|
}
|
|
|
|
|
2023-12-22 14:24:39 +01:00
|
|
|
.official-layout & {
|
|
|
|
.direction {
|
2023-12-20 22:11:43 +01:00
|
|
|
margin-top: 5.25mm;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-14 17:46:52 +01:00
|
|
|
.bloc-marque {
|
|
|
|
margin-bottom: 14mm;
|
2023-12-22 14:24:39 +01:00
|
|
|
margin-right: 17mm; // 4x 4.25mm
|
2023-11-14 17:46:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.marianne {
|
|
|
|
height: 4.25mm;
|
|
|
|
margin-bottom: 1mm;
|
|
|
|
}
|
|
|
|
|
|
|
|
.intitule {
|
|
|
|
font-size: 12pt;
|
|
|
|
font-weight: bold;
|
|
|
|
margin: 0 0 1mm;
|
2023-12-20 22:11:43 +01:00
|
|
|
line-height: 12pt;
|
2023-11-14 17:46:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.devise {
|
|
|
|
height: 8.5mm;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2023-12-22 14:24:39 +01:00
|
|
|
// weasyprint flexbox with img is broken
|
|
|
|
// so we're using old inline tricks
|
|
|
|
.logo-co-emetteur,
|
|
|
|
.direction {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo-co-emetteur {
|
|
|
|
img {
|
|
|
|
max-height: 28mm;
|
|
|
|
margin-right: 5mm;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-20 22:11:43 +01:00
|
|
|
.direction {
|
|
|
|
margin: 5.25mm 0 23.3mm;
|
|
|
|
line-height: 14pt;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.body-start {
|
2024-02-02 13:49:22 +01:00
|
|
|
margin-top: 12.6mm; // from masque traitement de texte
|
2023-12-20 22:11:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
2023-11-14 17:46:52 +01:00
|
|
|
font-size: 10pt;
|
2023-12-20 22:11:43 +01:00
|
|
|
|
|
|
|
.header {
|
|
|
|
&:first-of-type {
|
|
|
|
font-size: 10pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-of-type {
|
|
|
|
font-size: 8pt;
|
|
|
|
}
|
|
|
|
}
|
2023-11-14 17:46:52 +01:00
|
|
|
}
|
|
|
|
|
2023-12-20 22:11:43 +01:00
|
|
|
h1,
|
|
|
|
h2 {
|
|
|
|
// both titles have the same size
|
2023-11-14 17:46:52 +01:00
|
|
|
font-size: 12pt;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2023-12-20 22:11:43 +01:00
|
|
|
h1 {
|
|
|
|
margin: 14mm 0 8mm;
|
2023-11-14 17:46:52 +01:00
|
|
|
}
|
|
|
|
|
2023-12-20 22:11:43 +01:00
|
|
|
h2 {
|
|
|
|
margin: 0;
|
2024-02-02 13:49:22 +01:00
|
|
|
line-height: 8pt;
|
2023-11-14 17:46:52 +01:00
|
|
|
}
|
|
|
|
|
2023-12-20 22:11:43 +01:00
|
|
|
h3 {
|
2024-02-02 13:49:22 +01:00
|
|
|
font-size: 10pt; // same as text
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 4pt;
|
2023-11-14 17:46:52 +01:00
|
|
|
}
|
|
|
|
|
2023-12-20 22:11:43 +01:00
|
|
|
li p {
|
|
|
|
margin: 0.25rem 0;
|
2023-11-14 17:46:52 +01:00
|
|
|
}
|
|
|
|
|
2023-12-22 14:23:10 +01:00
|
|
|
.signature {
|
|
|
|
text-align: right;
|
|
|
|
margin-top: 14mm;
|
|
|
|
margin-right: 25mm;
|
2024-01-10 11:25:20 +01:00
|
|
|
}
|
2023-12-22 14:23:10 +01:00
|
|
|
|
2024-01-10 11:25:20 +01:00
|
|
|
.signature,
|
|
|
|
.logo-free-layout {
|
2023-12-22 14:23:10 +01:00
|
|
|
img {
|
2024-01-10 11:25:20 +01:00
|
|
|
max-height: 50mm;
|
|
|
|
max-width: 50mm;
|
2023-12-22 14:23:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-14 17:46:52 +01:00
|
|
|
.footer {
|
|
|
|
position: running(footer);
|
|
|
|
font-size: 7pt;
|
|
|
|
font-weight: 100;
|
|
|
|
}
|
|
|
|
}
|