2020-10-07 18:35:30 +02:00
|
|
|
<style id="style">
|
2021-01-14 15:57:14 +01:00
|
|
|
:root {
|
|
|
|
--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";
|
2021-02-09 16:47:41 +01:00
|
|
|
zoom: 80%;
|
2021-01-14 15:57:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@page {
|
2020-12-15 11:45:04 +01:00
|
|
|
margin: $global_margin;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
2021-01-14 15:57:14 +01:00
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2020-10-07 18:35:30 +02:00
|
|
|
.header-wrapper {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-wrapper .company-logo {
|
|
|
|
height: 5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-wrapper #company-address {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-wrapper #entity-details {
|
|
|
|
margin-top: 1.5rem;
|
|
|
|
text-align: left;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-wrapper #entity-details > tr,
|
|
|
|
.header-wrapper #entity-details th {
|
|
|
|
font-weight: normal;
|
|
|
|
padding-left: 0.9rem;
|
|
|
|
padding-top: 0.3rem;
|
|
|
|
padding-bottom: 0.3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-wrapper
|
|
|
|
#entity-details
|
|
|
|
[data-element='entity-balance-due-label'],
|
|
|
|
.header-wrapper
|
|
|
|
#entity-details
|
|
|
|
[data-element='entity-balance-due'] {
|
|
|
|
background-color: #e6e6e6;
|
|
|
|
}
|
|
|
|
|
|
|
|
#client-details {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2020-12-14 17:23:04 +01:00
|
|
|
#product-table,
|
|
|
|
#delivery-note-table,
|
2020-11-09 15:44:21 +01:00
|
|
|
#task-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-09 15:44:21 +01:00
|
|
|
#product-table > thead,
|
|
|
|
#delivery-note-table > thead,
|
|
|
|
#task-table > thead {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2020-11-04 14:42:29 +01:00
|
|
|
#product-table > thead > tr > th,
|
2020-11-09 15:44:21 +01:00
|
|
|
#delivery-note-table > thead > tr > th,
|
2020-11-04 14:42:29 +01:00
|
|
|
#task-table > thead > tr > th {
|
2020-10-07 18:35:30 +02:00
|
|
|
padding: 1rem;
|
|
|
|
background-color: #e6e6e6;
|
|
|
|
}
|
|
|
|
|
2020-11-04 14:42:29 +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-04 14:42:29 +01:00
|
|
|
#task-table > thead > tr > th:last-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2020-11-04 14:42:29 +01:00
|
|
|
#product-table > tbody > tr > td,
|
2020-11-09 15:44:21 +01:00
|
|
|
#delivery-note-table > tbody > tr > td,
|
2020-11-04 14:42:29 +01:00
|
|
|
#task-table > tbody > tr > td {
|
2020-10-07 18:35:30 +02:00
|
|
|
border-bottom: 1px solid #e6e6e6;
|
|
|
|
padding: 1rem;
|
|
|
|
}
|
|
|
|
|
2020-11-04 14:42:29 +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-04 14:42:29 +01:00
|
|
|
#task-table > tbody > tr > td:last-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2020-11-04 11:23:06 +01:00
|
|
|
#table-totals {
|
2020-10-07 18:35:30 +02:00
|
|
|
page-break-inside: avoid;
|
|
|
|
}
|
|
|
|
|
2021-02-09 16:47:41 +01:00
|
|
|
#table-totals {
|
2020-10-07 18:35:30 +02:00
|
|
|
display: grid;
|
2021-02-09 16:47:41 +01:00
|
|
|
grid-template-columns: 2fr 1fr;
|
2020-10-07 18:35:30 +02:00
|
|
|
padding-top: .5rem;
|
|
|
|
padding-left: 1rem;
|
2021-02-09 16:47:41 +01:00
|
|
|
gap: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#table-totals .totals-table-right-side>* {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
#table-totals>.totals-table-right-side>*> :nth-child(1) {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#table-totals>.totals-table-right-side>*> :nth-child(2) {
|
|
|
|
text-align: right;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
2020-11-04 11:23:06 +01:00
|
|
|
#table-totals
|
2020-10-07 18:35:30 +02:00
|
|
|
> *
|
2020-11-04 11:23:06 +01:00
|
|
|
[data-element='total-table-balance-due-label'],
|
|
|
|
#table-totals
|
2020-10-07 18:35:30 +02:00
|
|
|
> *
|
2020-11-04 11:23:06 +01:00
|
|
|
[data-element='total-table-balance-due'] {
|
2020-10-07 18:35:30 +02:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2020-11-04 11:23:06 +01:00
|
|
|
#table-totals > * > :last-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: right;
|
|
|
|
padding-right: 1rem;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<div id="header"></div>
|
|
|
|
|
|
|
|
<div id="body">
|
|
|
|
<div class="header-wrapper">
|
2021-03-10 16:56:41 +01:00
|
|
|
<div id="company-details"></div>
|
2020-10-07 18:35:30 +02:00
|
|
|
<div id="company-address"></div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<img
|
|
|
|
class="company-logo"
|
|
|
|
src="$company.logo"
|
|
|
|
alt="$company.name logo"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<table id="entity-details" cellspacing="0"></table>
|
2020-07-20 17:41:07 +02:00
|
|
|
</div>
|
2020-10-07 18:35:30 +02:00
|
|
|
</div>
|
2020-07-20 17:41:07 +02:00
|
|
|
|
2020-10-07 18:35:30 +02:00
|
|
|
<div id="client-details"></div>
|
2020-09-08 13:14:44 +02:00
|
|
|
|
2020-10-07 18:35:30 +02:00
|
|
|
<table id="product-table" cellspacing="0"></table>
|
2020-07-20 17:41:07 +02:00
|
|
|
|
2020-11-04 14:42:29 +01:00
|
|
|
<table id="task-table" cellspacing="0"></table>
|
|
|
|
|
2020-11-04 11:23:06 +01:00
|
|
|
<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>
|
|
|
|
|
2021-02-16 14:42:35 +01:00
|
|
|
<div id="footer"></div>
|