43 lines
794 B
HTML
43 lines
794 B
HTML
<style>
|
|
#signature-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
color: #898989;
|
|
}
|
|
|
|
.signature-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 75px;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
#signature-column-right {
|
|
margin-left: 20px;
|
|
padding-left: 20px;
|
|
border-left: 1px solid #898989;
|
|
}
|
|
|
|
#signature-name {
|
|
font-weight: bold;
|
|
color: blue;
|
|
}
|
|
</style>
|
|
|
|
<div id="signature-container">
|
|
<div class="signature-column">
|
|
<img src="edurable-logo.png" alt="e-Durable logo" />
|
|
<div>
|
|
Domaine des Pins C<br />
|
|
1196 Gland, Switzerland
|
|
</div>
|
|
</div>
|
|
<div class="signature-column" id="signature-column-right">
|
|
<div>
|
|
<span id="signature-name">Chauve Souris</span>
|
|
<br />
|
|
<small>Test User</small>
|
|
</div>
|
|
<div>+41 76 666 66 66</div>
|
|
</div>
|
|
</div>
|