53 lines
1.2 KiB
PHP
53 lines
1.2 KiB
PHP
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.label-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.logo-25 {
|
|
max-height: 45px;
|
|
margin-bottom: 5px;
|
|
}
|
|
.logo-50 {
|
|
max-height: 70px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.address {
|
|
font-size: 8px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.address-size-50 { font-size: 16px }
|
|
|
|
.inv-number-25 {
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
margin-top: 5px;
|
|
}
|
|
.inv-number-50 {
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
margin-top: 10px;
|
|
}
|
|
</style>
|
|
|
|
<div class="label-container">
|
|
<img src="<?php echo BASEDIR ?>/public/assets/images/xinon-full.png" class="logo-<?php echo $size; ?>">
|
|
<div class="address address-size-<?php echo $size; ?>">
|
|
<?php echo $companyAddress; ?><br>
|
|
<?php echo $companyPhone; ?>
|
|
</div>
|
|
<div class="inv-number-<?php echo $size; ?>">
|
|
<?php echo $invNumber; ?>
|
|
</div>
|
|
</div>
|