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

193 lines
4.1 KiB
HTML
Raw Normal View History

<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";
margin: 1cm;
}
p {
margin: 0;
padding: 0;
}
.header-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 20px;
}
.header-container .company-logo {
height: 4rem;
}
#company-details {
display: flex;
flex-direction: column;
color: #9f9f9f;
}
#company-details > span:first-child {
color: var(--primary-color);
}
#company-address {
display: flex;
flex-direction: column;
color: #9f9f9f;
}
.entity-label {
text-transform: uppercase;
margin-top: 3.5rem;
margin-bottom: 1rem;
font-weight: bold;
color: var(--primary-color);
}
.client-and-entity-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
padding: 1rem;
border-top: 1px solid #9f9f9f;
border-bottom: 1px solid #9f9f9f;
}
#entity-details {
text-align: left;
}
#entity-details > tr,
#entity-details th {
font-weight: normal;
}
#client-details {
display: flex;
flex-direction: column;
}
#client-details > :first-child {
font-weight: bold;
}
2020-11-05 14:25:48 +01:00
#product-table,
#delivery-note-table,
2020-11-05 14:25:48 +01:00
#task-table {
margin-top: 3rem;
/* margin-bottom: 200px; */
min-width: 100%;
table-layout: fixed;
overflow-wrap: break-word;
}
.task-duration {
display: block;
margin-top: 5px;
color: grey;
}
2020-11-05 14:25:48 +01:00
#product-table > thead,
#delivery-note-table > thead,
2020-11-05 14:25:48 +01:00
#task-table > thead {
text-align: left;
}
2020-11-05 14:25:48 +01:00
#product-table > thead > tr > th,
#delivery-note-table > thead > tr > th,
2020-11-05 14:25:48 +01:00
#task-table > thead > tr > th {
font-size: 1.1rem;
padding-bottom: 1.5rem;
padding-left: 1rem;
}
2020-11-05 14:25:48 +01:00
#product-table > tbody > tr > td,
#delivery-note-table > tbody > tr > td,
2020-11-05 14:25:48 +01:00
#task-table > tbody > tr > td {
border-bottom: 1px solid #9f9f9f;
padding: 1rem;
}
2020-11-05 14:25:48 +01:00
#product-table > tbody > tr > td:first-child,
#delivery-note-table > tbody > tr > td:first-child,
2020-11-05 14:25:48 +01:00
#task-table > tbody > tr > td:first-child {
color: var(--primary-color);
}
2020-11-05 14:25:48 +01:00
#product-table > tbody > tr:nth-child(odd),
#delivery-note-table > tbody > tr:nth-child(odd),
2020-11-05 14:25:48 +01:00
#task-table > tbody > tr:nth-child(odd) {
background-color: #f5f5f5;
}
2020-11-05 14:25:48 +01:00
#table-totals {
page-break-inside: avoid;
}
2020-11-05 14:25:48 +01:00
#table-totals > * {
display: grid;
grid-template-columns: 3fr 1fr 1fr;
padding-top: .5rem;
padding-left: 1rem;
gap: 20px;
}
2020-11-05 14:25:48 +01:00
#table-totals
> *
[data-element='product-table-balance-due-label'],
2020-11-05 14:25:48 +01:00
#table-totals
> *
[data-element='product-table-balance-due'] {
font-weight: bold;
}
2020-11-05 14:25:48 +01:00
#table-totals
> *
[data-element='product-table-balance-due'] {
color: var(--primary-color);
}
2020-11-05 14:25:48 +01:00
#table-totals > * > :last-child {
text-align: right;
padding-right: 1rem;
}
</style>
<div id="header"></div>
<div id="body">
<div class="header-container">
<img
class="company-logo"
src="$company.logo"
alt="$company.name logo"
/>
<div id="company-details"></div>
<div id="company-address"></div>
</div>
<p class="entity-label">$entity_label</p>
<div class="client-and-entity-wrapper">
<table id="entity-details" cellspacing="0"></table>
<div id="client-details"></div>
</div>
<table id="product-table" cellspacing="0"></table>
2020-11-05 14:25:48 +01:00
<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>