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

222 lines
5.1 KiB
HTML
Raw Normal View History

<style id="style">
:root {
--primary-color: $primary_color;
--secondary-color: $secondary_color;
}
2021-01-14 15:57:14 +01:00
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: Arial, Helvetica, sans-serif;
font-size: "$font_size";
}
2021-01-14 15:57:14 +01:00
@page {
margin: $global_margin;
}
p {
margin: 0;
padding: 0;
}
.company-logo-wrapper {
display: flex;
flex-direction: row;
justify-content: center;
padding-bottom: 2.5rem;
border-bottom: 4px solid;
}
.company-logo-wrapper .company-logo {
height: 5rem;
}
.double-border {
margin-top: 3px;
border-color: black;
}
.client-entity-wrapper {
display: grid;
grid-template-columns: 1.8fr 1.2fr;
margin-top: 3rem;
gap: 10px;
}
.client-entity-wrapper .wrapper-info-text {
display: block;
font-size: 1.5rem;
font-weight: normal;
}
.client-entity-wrapper .wrapper-left-side {
display: grid;
grid-template-columns: 1fr 1fr;
}
.client-entity-wrapper .wrapper-left-side #client-details,
.client-entity-wrapper .wrapper-left-side #company-details,
.client-entity-wrapper .wrapper-left-side #company-address {
display: flex;
flex-direction: column;
margin-top: 0.5rem;
}
.client-entity-wrapper .wrapper-left-side .company-info {
border-left: 1px solid;
padding-left: 1rem;
}
.client-entity-wrapper #entity-details {
text-align: left;
margin-top: 0.5rem;
min-width: 100%;
}
.client-entity-wrapper #entity-details > tr,
.client-entity-wrapper #entity-details th {
font-weight: normal;
}
2020-11-05 14:47:17 +01:00
#product-table,
#delivery-note-table,
2020-11-05 14:47:17 +01:00
#task-table {
margin-top: 3rem;
/* 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:47:17 +01:00
#product-table > thead,
#delivery-note-table > thead,
2020-11-05 14:47:17 +01:00
#task-table > thead {
text-align: left;
}
2020-11-05 14:47:17 +01:00
#product-table > thead > tr > th,
#delivery-note-table > thead > tr > th,
2020-11-05 14:47:17 +01:00
#task-table > thead > tr > th {
font-size: 1.1rem;
padding-bottom: 1.5rem;
padding-left: 1rem;
color: var(--primary-color);
font-weight: bold;
}
2020-11-05 14:47:17 +01:00
#product-table > thead > tr > th:last-child,
#delivery-note-table > thead > tr > th:last-child,
2020-11-05 14:47:17 +01:00
#task-table > thead > tr > th:last-child {
text-align: right;
}
2020-11-05 14:47:17 +01:00
#product-table > tbody > tr > td,
#delivery-note-table > tbody > tr > td,
2020-11-05 14:47:17 +01:00
#task-table > tbody > tr > td {
border-bottom: 1px solid;
padding: 1rem;
}
2020-11-05 14:47:17 +01:00
#product-table > tbody > tr > td:last-child,
#delivery-note-table > tbody > tr > td:last-child,
2020-11-05 14:47:17 +01:00
#task-table > tbody > tr > td:last-child {
text-align: right;
}
.thanks-label {
text-align: center;
margin-top: 6rem;
font-size: 1.5rem;
font-weight: bold;
padding-bottom: 1rem;
border-bottom: 4px solid;
}
2020-11-05 14:47:17 +01:00
#table-totals {
page-break-inside: avoid;
}
2020-11-05 14:47:17 +01:00
#table-totals > * {
display: grid;
grid-template-columns: 3fr 1fr 1fr;
padding-top: 0.5rem;
padding-left: 1rem;
gap: 20px;
}
2020-11-05 14:47:17 +01:00
#table-totals
> *
[data-element='product-table-balance-due-label'],
2020-11-05 14:47:17 +01:00
#table-totals
> *
[data-element='product-table-balance-due'] {
font-weight: bold;
}
2020-11-05 14:47:17 +01:00
#table-totals
> *
[data-element='product-table-balance-due'] {
color: var(--primary-color);
}
2020-11-05 14:47:17 +01:00
#table-totals > * > :last-child {
text-align: right;
padding-right: 0.5rem;
}
</style>
<div id="header"></div>
<div id="body">
<div class="company-logo-wrapper">
<img
class="company-logo"
src="$company.logo"
alt="$company.name logo"
/>
</div>
<hr class="double-border"/>
<div class="client-entity-wrapper">
<div class="wrapper-left-side">
<div class="text-with-client">
<h2 class="wrapper-info-text">$balance_due_label</h2>
<div id="client-details"></div>
</div>
2020-07-21 18:03:14 +02:00
<div class="company-info">
<div id="company-details"></div>
<div id="company-address"></div>
2020-07-21 18:03:14 +02:00
</div>
</div>
<div class="wrapper-right-side">
<h2 class="wrapper-info-text">$details_label</h2>
<table id="entity-details" cellspacing="0"></table>
</div>
</div>
<table id="product-table" cellspacing="0"></table>
2020-11-05 14:47:17 +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-04 13:18:17 +02:00
<p class="thanks-label">$thanks_label!</p>
<hr class="double-border"/>
2020-09-11 11:53:52 +02:00
<div id="footer">$entity_footer</div>
2020-09-11 11:53:52 +02:00