augmentation taille signature : ticket 4d869aca12

FossilOrigin-Name: 1e88fbf5da60f5bf88b1690fed90f728810ead71d655e357a0c7706769e77d00
This commit is contained in:
engel 2022-03-23 08:44:41 +00:00
parent acc18fc832
commit 3f077d0349
1 changed files with 23 additions and 24 deletions

View File

@ -58,18 +58,19 @@ echo <<<FDD
<p class="important">Reçu numéro {$annee_recu}/{$numero}</p> <p class="important">Reçu numéro {$annee_recu}/{$numero}</p>
</div> </div>
</div> </div>
<div class="cartouche" id="beneficiaire"> <div class="cartouche" id="beneficiaire">
<h3 class="rubrique">Bénéficiaire des versements</h3> <h3 class="rubrique">Bénéficiaire des versements</h3>
<p class="important">Association « {$this->nomAsso} »</p> <p class="important">Association « {$this->nomAsso} »<br />
<p class="important" >{$this->adresseAsso}</p> {$this->adresseAsso}<br />
<p><span class="titre">Objet : </span><span class="libelle">{$this->objetAsso}</span></p> <span class="titre">Objet : </span><span class="libelle">{$this->objetAsso}</span></p>
</div> </div>
<div class="cartouche" id="donateur"> <div class="cartouche" id="donateur">
<h3 class="rubrique">Donateur</h3> <h3 class="rubrique">Donateur</h3>
<p>{$nom}</p> <p>{$nom}<br />
<p>{$adresse}</p> {$adresse}<br />
<p>{$code_postal} {$ville}</p> {$code_postal} {$ville}</p>
</div> </div>
<div class="cartouche" id="versements"> <div class="cartouche" id="versements">
@ -118,10 +119,13 @@ FDD;
$date = date("j/m/Y"); $date = date("j/m/Y");
echo <<<FDD echo <<<FDD
<div class="cartouche" id="final"> <div class="cartouche" id="final">
<p>{$this->villeAsso} le {$date}</p> <p>{$this->villeAsso} le {$date}<br />
<img id="signature" src="$this->signature" /> <img id="signature" src="$this->signature" />
<p id="nom">$this->nomResponsable</p> </p>
<p id="fonction">$this->fonctionResponsable</p> <div>
<span id="nom">$this->nomResponsable</span><br />
<span id="fonction">$this->fonctionResponsable</span>
</div>
</div> </div>
</body> </body>
</html> </html>
@ -168,6 +172,7 @@ echo <<<FDD
font-family: Serif; font-family: Serif;
font-size: 11pt; font-size: 11pt;
background-color: white; background-color: white;
width : 19cm;
} }
#logoCerfa #logoCerfa
{ {
@ -208,38 +213,32 @@ echo <<<FDD
{ {
text-align : right; text-align : right;
} }
#final #versements
{ {
height : 5cm; border-top: 1px solid rgb(0, 0, 128);
border-bottom: 1px solid rgb(0, 0, 128);
} }
.rubrique .rubrique
{ {
background-color : rgb(200, 200, 250); background-color : rgb(200, 200, 250);
padding : 2mm; padding : 2mm;
} }
.cartouche
{
margin : 2mm auto;
padding : 0 2mm;
border : 1px solid rgb(0, 0, 128);
border-radius : 8px;
}
.titre, .important .titre, .important
{ {
font-weight:bold; font-weight:bold;
} }
.libelle
{
font-weight: normal;
}
#signature #signature
{ {
display: block; display: block;
max-width : 7cm; max-width : 7cm;
max-height : 2cm; max-height : 4cm;
margin: 0 auto; margin: 0 auto;
padding-bottom : 2mm; padding-bottom : 2mm;
} }
#fonction, #nom
{
text-align : center;
}
</style> </style>
</head> </head>
<body> <body>