2020-10-07 18:35:30 +02:00
|
|
|
<style id="style">
|
|
|
|
:root {
|
2021-01-19 12:37:27 +01:00
|
|
|
--primary-color: $primary_color;
|
|
|
|
--secondary-color: $secondary_color;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2021-01-14 15:57:14 +01:00
|
|
|
font-size: "$font_size";
|
|
|
|
}
|
|
|
|
|
|
|
|
@page {
|
|
|
|
margin: -0.25cm !important;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
page-break-after: always;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-wrapper {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1.5fr 1fr 1fr;
|
|
|
|
background-color: #2d2c2a;
|
|
|
|
padding: 3rem;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.company-logo {
|
|
|
|
height: 6rem;
|
|
|
|
padding: 2rem;
|
|
|
|
background-color: white;
|
|
|
|
margin: -4rem 2rem 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#company-details,
|
|
|
|
#company-address {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#client-details {
|
|
|
|
margin: 2rem;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#client-details > :first-child {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.client-entity-wrapper {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1.5fr 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entity-details-wrapper {
|
|
|
|
background-color: var(--primary-color);
|
|
|
|
padding: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#entity-details {
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
color: white !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#entity-details > tr,
|
|
|
|
#entity-details th {
|
|
|
|
font-weight: normal;
|
|
|
|
padding-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:33:43 +01:00
|
|
|
#product-table,
|
2020-11-09 15:44:21 +01:00
|
|
|
#task-table,
|
|
|
|
#delivery-note-table {
|
2020-10-07 18:35:30 +02:00
|
|
|
min-width: 100%;
|
|
|
|
table-layout: fixed;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
margin-top: 3rem;
|
2020-11-06 13:12:28 +01:00
|
|
|
/* margin-bottom: 200px; */
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:58:29 +01:00
|
|
|
.task-time-details {
|
2020-11-06 13:12:28 +01:00
|
|
|
display: block;
|
|
|
|
margin-top: 5px;
|
|
|
|
color: grey;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
2020-11-05 13:33:43 +01:00
|
|
|
#product-table > thead,
|
2020-11-09 15:44:21 +01:00
|
|
|
#delivery-note-table > thead,
|
2020-11-05 13:33:43 +01:00
|
|
|
#task-table > thead {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:33:43 +01:00
|
|
|
#product-table > thead > tr > th,
|
2020-11-09 15:44:21 +01:00
|
|
|
#delivery-note-table > thead > tr > th,
|
2020-11-05 13:33:43 +01:00
|
|
|
#task-table > thead > tr > th {
|
2021-01-14 15:57:14 +01:00
|
|
|
padding: 1.5rem;
|
2020-10-07 18:35:30 +02:00
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:33:43 +01:00
|
|
|
#product-table > thead > tr > th:last-child,
|
2020-11-09 15:44:21 +01:00
|
|
|
#delivery-note-table > thead > tr > th:last-child,
|
2020-11-05 13:33:43 +01:00
|
|
|
#task-table > thead > tr > th:last-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:33:43 +01:00
|
|
|
#product-table > tbody > tr > td,
|
2020-11-09 15:44:21 +01:00
|
|
|
#delivery-note-table > tbody > tr > td,
|
2020-11-05 13:33:43 +01:00
|
|
|
#task-table > tbody > tr > td {
|
2020-10-07 18:35:30 +02:00
|
|
|
padding: 1.5rem;
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:33:43 +01:00
|
|
|
#product-table > tbody > tr > td:last-child,
|
2020-11-09 15:44:21 +01:00
|
|
|
#delivery-note-table > tbody > tr > td:last-child,
|
2020-11-05 13:33:43 +01:00
|
|
|
#task-table > tbody > tr > td:last-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:33:43 +01:00
|
|
|
#product-table > tbody > tr > td:first-child,
|
2020-11-09 15:44:21 +01:00
|
|
|
#delivery-note-table > tbody > tr > td:first-child,
|
2020-11-05 13:33:43 +01:00
|
|
|
#task-table > tbody > tr > td:first-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:33:43 +01:00
|
|
|
#product-table > tbody > tr:nth-child(odd),
|
2020-11-09 15:44:21 +01:00
|
|
|
#delivery-note-table > tbody > tr:nth-child(odd),
|
2020-11-05 13:33:43 +01:00
|
|
|
#task-table > tbody > tr:nth-child(odd) {
|
2020-10-07 18:35:30 +02:00
|
|
|
background-color: #ebebeb;
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:33:43 +01:00
|
|
|
#table-totals {
|
2020-10-07 18:35:30 +02:00
|
|
|
page-break-inside: avoid;
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:33:43 +01:00
|
|
|
#table-totals > * {
|
2020-10-07 18:35:30 +02:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 3fr 1fr 1fr;
|
|
|
|
padding-top: .5rem;
|
|
|
|
padding-left: 1.2rem;
|
|
|
|
gap: 20px;
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:33:43 +01:00
|
|
|
#table-totals
|
2020-10-07 18:35:30 +02:00
|
|
|
> *
|
|
|
|
[data-element='product-table-balance-due-label'],
|
2020-11-05 13:33:43 +01:00
|
|
|
#table-totals
|
2020-10-07 18:35:30 +02:00
|
|
|
> *
|
|
|
|
[data-element='product-table-balance-due'] {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.4rem;
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:33:43 +01:00
|
|
|
#table-totals
|
2020-10-07 18:35:30 +02:00
|
|
|
> *
|
|
|
|
[data-element='product-table-balance-due'] {
|
|
|
|
color: var(--primary-color);
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:33:43 +01:00
|
|
|
#table-totals > * > :last-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: right;
|
|
|
|
padding-right: 1.5rem;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2021-01-14 15:57:14 +01:00
|
|
|
|
2020-10-07 18:35:30 +02:00
|
|
|
<div class="header-wrapper" id="header">
|
|
|
|
<div></div>
|
|
|
|
|
|
|
|
<div id="company-details"></div>
|
|
|
|
<div id="company-address"></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="body">
|
|
|
|
<img
|
|
|
|
class="company-logo"
|
|
|
|
src="$company.logo"
|
|
|
|
alt="$company.name logo"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<div class="client-entity-wrapper">
|
|
|
|
<div id="client-details" cellspacing="0"></div>
|
|
|
|
|
|
|
|
<div class="entity-details-wrapper">
|
|
|
|
<table id="entity-details"></table>
|
|
|
|
</div>
|
2020-09-09 17:08:31 +02:00
|
|
|
</div>
|
|
|
|
|
2020-10-07 18:35:30 +02:00
|
|
|
<table id="product-table" cellspacing="0"></table>
|
2020-07-20 17:03:52 +02:00
|
|
|
|
2020-11-05 13:33:43 +01:00
|
|
|
<table id="task-table" cellspacing="0"></table>
|
|
|
|
|
|
|
|
<div id="table-totals" cellspacing="0"></div>
|
2020-11-09 15:44:21 +01:00
|
|
|
|
2020-11-09 16:23:27 +01:00
|
|
|
<table id="delivery-note-table" cellspacing="0"></table>
|
2020-10-07 18:35:30 +02:00
|
|
|
</div>
|
2020-09-08 12:40:04 +02:00
|
|
|
|
2020-12-08 16:45:24 +01:00
|
|
|
<div id="footer">$entity_footer</div>
|