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

255 lines
5.7 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";
2021-02-09 16:47:41 +01:00
zoom: 80%;
}
@page {
margin: $global_margin;
}
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;
2021-02-10 12:31:14 +01:00
color: #AAA9A9;
}
#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;
2021-02-10 12:31:14 +01:00
margin-top: 1rem;
}
2021-02-10 12:31:14 +01:00
#client-details > p:nth-child(1) {
color: var(--primary-color);
}
#entity-details {
background-color: var(--primary-color);
2021-02-10 12:31:14 +01:00
padding: 1.2rem;
border-radius: 1rem;
width: 100%;
color: white;
text-align: left;
}
#entity-details th {
font-weight: normal;
2021-02-09 16:47:41 +01:00
padding-bottom: .5rem;
}
2021-02-10 12:31:14 +01:00
#entity-details > tbody > tr > th:nth-child(2) {
text-align: right;
}
2020-11-05 14:13:28 +01:00
#product-table,
#delivery-note-table,
2020-11-05 14:13:28 +01:00
#task-table {
margin-top: 3.5rem;
/* margin-bottom: 200px; */
min-width: 100%;
table-layout: fixed;
overflow-wrap: break-word;
}
.task-time-details {
display: block;
margin-top: 5px;
color: grey;
}
2020-11-05 14:13:28 +01:00
#product-table > thead,
#delivery-note-table > thead,
2020-11-05 14:13:28 +01:00
#task-table > thead {
text-align: left;
background: var(--secondary-color);
}
2020-11-05 14:13:28 +01:00
#product-table > thead > tr > th,
#delivery-note-table > thead > tr > th,
2020-11-05 14:13:28 +01:00
#task-table > thead > tr > th {
padding: 1rem;
color: white;
font-weight: semibold;
}
2020-11-05 14:13:28 +01:00
#product-table > thead > tr > th:first-child,
#delivery-note-table > thead > tr > th:first-child,
2020-11-05 14:13:28 +01:00
#task-table > thead > tr > th:first-child {
border-top-left-radius: 1rem;
}
2020-11-05 14:13:28 +01:00
#product-table > thead > tr > th:last-child,
#delivery-note-table > thead > tr > th:last-child,
2020-11-05 14:13:28 +01:00
#task-table > thead > tr > th:last-child {
border-top-right-radius: 1rem;
text-align: right;
}
2020-11-05 14:13:28 +01:00
#product-table > tbody > tr > td,
#delivery-note-table > tbody > tr > td,
2020-11-05 14:13:28 +01:00
#task-table > tbody > tr > td {
padding: 1rem;
}
2020-11-05 14:13:28 +01:00
#product-table > tbody > tr > td:last-child,
#delivery-note-table > tbody > tr > td:last-child,
2020-11-05 14:13:28 +01:00
#task-table > tbody > tr > td:last-child {
text-align: right;
}
2020-11-05 14:13:28 +01:00
#product-table > tbody > tr:nth-child(odd) > td,
#delivery-note-table > tbody > tr:nth-child(odd) > td,
2020-11-05 14:13:28 +01:00
#task-table > tbody > tr:nth-child(odd) > td {
2021-02-10 12:31:14 +01:00
background: #F7F7F7;
}
2020-11-05 14:13:28 +01:00
#product-table > tbody > tr:nth-child(even) > td,
#delivery-note-table > tbody > tr:nth-child(even) > td,
2020-11-05 14:13:28 +01:00
#task-table > tbody > tr:nth-child(even) > td {
background: #f7f7f7;
}
[data-element='product-table-balance-due-label'],
2020-11-05 14:13:28 +01:00
[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;
}
2020-11-05 14:13:28 +01:00
#table-totals {
page-break-inside: avoid;
}
2020-11-05 14:13:28 +01:00
#table-totals > *:last-child {
border-bottom-left-radius: 1rem;
border-bottom-right-radius: 1rem;
}
2021-02-09 16:47:41 +01:00
#table-totals {
display: grid;
2021-02-09 16:47:41 +01:00
grid-template-columns: 2fr 1fr;
gap: 80px;
padding-left: 1rem;
padding-top: 0.5rem;
padding-bottom: 0.8rem;
}
2021-02-09 16:47:41 +01:00
#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-11-05 14:13:28 +01:00
#table-totals
> *
[data-element='product-table-balance-due-label'],
2020-11-05 14:13:28 +01:00
#table-totals
> *
[data-element='product-table-balance-due'] {
font-weight: bold;
font-size: 1.2rem;
}
2020-11-05 14:13:28 +01:00
#table-totals
> *
[data-element='product-table-balance-due'] {
color: red;
}
2020-11-05 14:13:28 +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
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>
2020-07-15 18:03:54 +02:00
</div>
</div>
2020-07-15 18:03:54 +02:00
<table id="product-table" cellspacing="0"></table>
2020-09-04 13:18:17 +02:00
2020-11-05 14:13:28 +01:00
<table id="task-table" cellspacing="0"></table>
<div id="table-totals" cellspacing="0"></div>
2020-11-09 16:23:27 +01:00
<table id="delivery-note-table" cellspacing="0"></table>
</div>
2020-09-11 11:53:52 +02:00
2021-02-16 14:42:35 +01:00
<div id="footer"></div>