2020-07-21 19:00:17 +02:00
|
|
|
<!DOCTYPE html>
|
2020-09-04 13:18:17 +02:00
|
|
|
<html lang="en">
|
|
|
|
<head id="head">
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2020-07-21 19:00:17 +02:00
|
|
|
|
2020-09-04 13:18:17 +02:00
|
|
|
<style id="style">
|
|
|
|
* {
|
2020-09-09 17:08:31 +02:00
|
|
|
font-size: '$font-size';
|
2020-09-04 13:18:17 +02:00
|
|
|
}
|
|
|
|
|
2020-09-11 11:53:52 +02:00
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2020-09-04 13:18:17 +02:00
|
|
|
body {
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2020-09-17 14:38:25 +02:00
|
|
|
margin: 1cm;
|
2020-09-04 13:18:17 +02:00
|
|
|
}
|
2020-07-21 19:00:17 +02:00
|
|
|
|
2020-09-04 13:18:17 +02:00
|
|
|
.header-wrapper {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
|
|
}
|
|
|
|
.header-wrapper .company-logo {
|
|
|
|
height: 5rem;
|
|
|
|
}
|
|
|
|
.header-wrapper .entity-details-wrapper {
|
|
|
|
background-color: #009e90;
|
|
|
|
padding: 1rem;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
.header-wrapper #entity-details {
|
|
|
|
width: 100%;
|
|
|
|
color: white;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.header-wrapper #entity-details > tr,
|
|
|
|
.header-wrapper #entity-details th {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2020-08-27 13:01:19 +02:00
|
|
|
|
2020-09-04 13:18:17 +02:00
|
|
|
.contacts-wrapper {
|
|
|
|
margin-top: 3rem;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
gap: 40px;
|
|
|
|
}
|
|
|
|
.contacts-wrapper .contact-label {
|
|
|
|
font-weight: bold;
|
|
|
|
color: #009e90;
|
|
|
|
margin-left: 1rem;
|
|
|
|
}
|
|
|
|
.contacts-wrapper #company-address,
|
|
|
|
.contacts-wrapper #company-details,
|
|
|
|
.contacts-wrapper #client-details {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
.contacts-wrapper .company-info {
|
|
|
|
margin-top: 1rem;
|
|
|
|
padding: 1rem;
|
|
|
|
border-top: 1px solid #009e90;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
gap: 10px;
|
|
|
|
}
|
|
|
|
.contacts-wrapper #client-details {
|
|
|
|
margin-top: 1rem;
|
|
|
|
padding: 1rem;
|
|
|
|
border-top: 1px solid #009e90;
|
2020-09-11 16:45:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.contact-wrapper-left-side,
|
|
|
|
.contact-wrapper-right-side {
|
2020-09-04 13:18:17 +02:00
|
|
|
border-bottom: 1px solid #009e90;
|
|
|
|
}
|
|
|
|
|
|
|
|
#product-table {
|
|
|
|
margin-top: 3rem;
|
|
|
|
min-width: 100%;
|
|
|
|
table-layout: fixed;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
|
|
|
#product-table > thead {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
#product-table > thead > tr > th {
|
|
|
|
font-size: 1.2rem;
|
|
|
|
padding: 1rem;
|
|
|
|
background: #009e90;
|
|
|
|
color: white;
|
|
|
|
}
|
2020-09-08 13:14:44 +02:00
|
|
|
#product-table > thead tr > th:last-child {
|
|
|
|
text-align: right;
|
|
|
|
}
|
2020-09-04 13:18:17 +02:00
|
|
|
#product-table > thead tr > th:first-child {
|
|
|
|
border-top-left-radius: 10px;
|
|
|
|
border-bottom-left-radius: 10px;
|
|
|
|
}
|
|
|
|
#product-table > thead tr > th:last-child {
|
|
|
|
border-top-right-radius: 10px;
|
|
|
|
border-bottom-right-radius: 10px;
|
|
|
|
}
|
|
|
|
#product-table > tbody > tr > td {
|
|
|
|
border-bottom: 1px solid #009e90;
|
|
|
|
padding: 1rem;
|
|
|
|
}
|
|
|
|
#product-table > tbody > tr > td:first-child {
|
|
|
|
color: #bb3a24;
|
|
|
|
}
|
2020-09-08 13:14:44 +02:00
|
|
|
#product-table > tbody > tr > td:last-child {
|
|
|
|
text-align: right;
|
2020-09-04 13:18:17 +02:00
|
|
|
}
|
2020-09-08 13:14:44 +02:00
|
|
|
|
2020-09-11 16:45:55 +02:00
|
|
|
#product-table-footer {
|
|
|
|
page-break-inside: avoid;
|
|
|
|
}
|
|
|
|
|
2020-09-08 13:14:44 +02:00
|
|
|
#product-table-footer > * {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 3fr 1fr 1fr;
|
2020-09-11 16:45:55 +02:00
|
|
|
padding-top: 0.5rem;
|
2020-09-08 13:14:44 +02:00
|
|
|
padding-left: 1rem;
|
|
|
|
gap: 20px;
|
|
|
|
}
|
|
|
|
#product-table-footer
|
|
|
|
> *
|
|
|
|
[data-element='product-table-balance-due-label'],
|
|
|
|
#product-table-footer
|
|
|
|
> *
|
|
|
|
[data-element='product-table-balance-due'] {
|
|
|
|
font-weight: bold;
|
2020-09-04 13:18:17 +02:00
|
|
|
}
|
2020-09-08 13:14:44 +02:00
|
|
|
#product-table-footer
|
|
|
|
> *
|
|
|
|
[data-element='product-table-balance-due'] {
|
|
|
|
color: #009e90;
|
|
|
|
}
|
|
|
|
#product-table-footer > * > :last-child {
|
|
|
|
text-align: right;
|
|
|
|
padding-right: 1rem;
|
2020-09-04 13:18:17 +02:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
2020-08-27 13:01:19 +02:00
|
|
|
|
2020-09-09 17:08:31 +02:00
|
|
|
<div id="header"></div>
|
|
|
|
|
2020-09-04 13:18:17 +02:00
|
|
|
<body id="body">
|
2020-09-09 17:08:31 +02:00
|
|
|
<div class="header-wrapper">
|
2020-09-04 13:18:17 +02:00
|
|
|
<img
|
|
|
|
class="company-logo"
|
|
|
|
src="$company.logo"
|
|
|
|
alt="$company.name logo"
|
|
|
|
/>
|
2020-07-21 19:00:17 +02:00
|
|
|
|
2020-09-04 13:18:17 +02:00
|
|
|
<div>
|
|
|
|
<!-- Placeholder for empty space -->
|
2020-08-11 17:57:35 +02:00
|
|
|
</div>
|
2020-09-04 13:18:17 +02:00
|
|
|
|
|
|
|
<div class="entity-details-wrapper">
|
|
|
|
<table id="entity-details" cellspacing="0"></table>
|
2020-08-11 17:57:35 +02:00
|
|
|
</div>
|
2020-08-11 17:53:21 +02:00
|
|
|
</div>
|
2020-07-21 19:00:17 +02:00
|
|
|
|
2020-09-04 13:18:17 +02:00
|
|
|
<div class="contacts-wrapper">
|
2020-09-11 16:45:55 +02:00
|
|
|
<div class="contact-wrapper-left-side">
|
2020-09-04 13:18:17 +02:00
|
|
|
<p class="contact-label">$to_label:</p>
|
|
|
|
<div class="company-info">
|
2020-08-11 17:57:35 +02:00
|
|
|
<div id="company-details"></div>
|
|
|
|
<div id="company-address"></div>
|
|
|
|
</div>
|
2020-07-21 19:00:17 +02:00
|
|
|
</div>
|
2020-09-04 13:18:17 +02:00
|
|
|
|
2020-09-11 16:45:55 +02:00
|
|
|
<div class="contact-wrapper-right-side">
|
2020-09-04 13:18:17 +02:00
|
|
|
<p class="contact-label">$from_label:</p>
|
|
|
|
<div id="client-details"></div>
|
|
|
|
</div>
|
2020-07-21 19:00:17 +02:00
|
|
|
</div>
|
2020-08-11 17:53:21 +02:00
|
|
|
|
2020-09-04 13:18:17 +02:00
|
|
|
<table id="product-table" cellspacing="0"></table>
|
2020-07-21 19:00:17 +02:00
|
|
|
|
2020-09-08 13:14:44 +02:00
|
|
|
<div id="product-table-footer" cellspacing="0"></div>
|
2020-09-04 13:18:17 +02:00
|
|
|
</body>
|
2020-09-11 11:53:52 +02:00
|
|
|
|
2020-09-09 17:08:31 +02:00
|
|
|
<div id="footer"><!-- Your footer content here --></div>
|
2020-08-11 17:57:35 +02:00
|
|
|
</html>
|