1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/resources/views/pdf-designs/business.html
2020-11-09 15:44:21 +01:00

252 lines
5.5 KiB
HTML

<style id="style">
:root {
--primary-color: $primary_color;
--secondary-color: $secondary_color;
}
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: Arial, Helvetica, sans-serif;
font-size: "$font_size";
}
@page {
margin: 1cm;
}
p {
margin: 0;
padding: 0;
}
.header-container {
display: grid;
grid-template-columns: 1.8fr 1fr 1fr;
grid-gap: 20px;
}
.header-container > span {
display: block;
}
.company-logo {
height: 4rem;
}
#company-details {
display: flex;
flex-direction: column;
color: #b1b1b1;
}
#company-details > * {
margin-bottom: 0.8rem;
}
#company-address {
display: flex;
flex-direction: column;
color: #b1b1b1;
}
#company-address > * {
margin-bottom: 0.8rem;
}
.entity-issued-to {
margin-top: 3rem;
font-weight: bold;
}
.client-and-entity-wrapper {
display: grid;
grid-template-columns: 2fr 1.5fr;
gap: 20px;
}
#client-details {
display: flex;
flex-direction: column;
color: var(--primary-color);
}
#client-details > * {
margin-bottom: 0.5rem;
}
#client-details > span:nth-child(1) {
font-weight: bold;
}
#entity-details {
background-color: var(--primary-color);
padding: 0.8rem;
border-radius: 1rem;
width: 100%;
color: white;
text-align: left;
}
#entity-details th {
font-weight: normal;
}
#product-table,
#delivery-note-table,
#task-table {
margin-top: 3.5rem;
/* margin-bottom: 200px; */
min-width: 100%;
table-layout: fixed;
overflow-wrap: break-word;
}
.task-duration {
display: block;
margin-top: 5px;
color: grey;
}
#product-table > thead,
#delivery-note-table > thead,
#task-table > thead {
text-align: left;
background: var(--secondary-color);
}
#product-table > thead > tr > th,
#delivery-note-table > thead > tr > th,
#task-table > thead > tr > th {
padding: 1rem;
color: white;
font-weight: semibold;
}
#product-table > thead > tr > th:first-child,
#delivery-note-table > thead > tr > th:first-child,
#task-table > thead > tr > th:first-child {
border-top-left-radius: 1rem;
}
#product-table > thead > tr > th:last-child,
#delivery-note-table > thead > tr > th:last-child,
#task-table > thead > tr > th:last-child {
border-top-right-radius: 1rem;
text-align: right;
}
#product-table > tbody > tr > td,
#delivery-note-table > tbody > tr > td,
#task-table > tbody > tr > td {
padding: 1rem;
}
#product-table > tbody > tr > td:last-child,
#delivery-note-table > tbody > tr > td:last-child,
#task-table > tbody > tr > td:last-child {
text-align: right;
}
#product-table > tbody > tr:nth-child(odd) > td,
#delivery-note-table > tbody > tr:nth-child(odd) > td,
#task-table > tbody > tr:nth-child(odd) > td {
background: #e8e8e8;
}
#product-table > tbody > tr:nth-child(even) > td,
#delivery-note-table > tbody > tr:nth-child(even) > td,
#task-table > tbody > tr:nth-child(even) > td {
background: #f7f7f7;
}
[data-element='product-table-balance-due-label'],
[data-element='product-table-balance-due'],
[data-element='task-table-balance-due-label'],
[data-element='task-table-balance-due'] {
color: var(--secondary-color) !important;
font-weight: bold !important;
}
@media print {
body {
margin-top: 0;
margin-right: 0;
}
}
#table-totals {
page-break-inside: avoid;
}
#table-totals > *:last-child {
border-bottom-left-radius: 1rem;
border-bottom-right-radius: 1rem;
}
#table-totals > * {
background-color: #f7f7f7;
display: grid;
grid-template-columns: 3fr 1fr 1fr;
gap: 20px;
padding-left: 1rem;
padding-top: 0.5rem;
padding-bottom: 0.8rem;
}
#table-totals
> *
[data-element='product-table-balance-due-label'],
#table-totals
> *
[data-element='product-table-balance-due'] {
font-weight: bold;
font-size: 1.2rem;
}
#table-totals
> *
[data-element='product-table-balance-due'] {
color: red;
}
#table-totals > * > :last-child {
text-align: right;
padding-right: 1rem;
}
</style>
<div id="header"></div>
<div id="body">
<div class="header-container">
<img
src="$company.logo"
class="company-logo"
alt="$company.name logo"
/>
<div id="company-details"></div>
<div id="company-address"></div>
</div>
<p class="entity-issued-to">$entity_issued_to_label:</p>
<div class="client-and-entity-wrapper">
<div id="client-details"></div>
<div class="entity-details-wrapper">
<table id="entity-details" cellspacing="0"></table>
</div>
</div>
<table id="product-table" cellspacing="0"></table>
<table id="task-table" cellspacing="0"></table>
<div id="table-totals" cellspacing="0"></div>
<div id="delivery-note-table" cellspacing="0"></div>
</div>
<div id="footer"></div>