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

300 lines
7.3 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-02-09 16:47:41 +01:00
zoom: 80%;
}
2021-01-14 15:57:14 +01:00
@page {
2021-02-10 12:31:14 +01:00
margin: -0.25cm !important;
2021-01-14 15:57:14 +01:00
}
p {
margin: 0;
padding: 0;
}
.header-wrapper {
2021-02-10 12:31:14 +01:00
margin-top: 2rem;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
2021-02-10 12:31:14 +01:00
padding: 2rem 3rem;
}
.header-wrapper .company-logo {
height: 5rem;
}
.header-wrapper .entity-details-wrapper {
background-color: var(--primary-color);
padding: 1rem;
border-radius: 10px;
}
.header-wrapper #entity-details {
width: 100%;
color: white;
text-align: left;
}
.header-wrapper #entity-details > tr,
.header-wrapper #entity-details th {
font-weight: normal;
}
.contacts-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
2021-02-10 12:31:14 +01:00
padding: 3rem;
}
.contacts-wrapper .contact-label {
font-weight: bold;
color: var(--primary-color);
margin-left: 1rem;
}
.contacts-wrapper #company-address,
.contacts-wrapper #company-details,
.contacts-wrapper #client-details {
display: flex;
flex-direction: column;
margin-bottom: 1rem;
}
.contacts-wrapper .company-info {
margin-top: 1rem;
padding: 1rem;
border-top: 1px solid var(--primary-color);
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.contacts-wrapper #client-details {
margin-top: 1rem;
padding: 1rem;
border-top: 1px solid var(--primary-color);
}
.contact-wrapper-left-side,
.contact-wrapper-right-side {
border-bottom: 1px solid var(--primary-color);
}
2020-11-05 14:47:09 +01:00
#product-table,
#delivery-note-table,
2020-11-05 14:47:09 +01:00
#task-table {
2021-02-10 12:31:14 +01:00
padding: 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:09 +01:00
#product-table > thead,
#delivery-note-table > thead,
2020-11-05 14:47:09 +01:00
#task-table > thead {
text-align: left;
}
2020-11-05 14:47:09 +01:00
#product-table > thead > tr > th,
#delivery-note-table > thead > tr > th,
2020-11-05 14:47:09 +01:00
#task-table > thead > tr > th {
font-size: 1.2rem;
padding: 1rem;
background: var(--primary-color);
color: white;
}
2020-11-05 14:47:09 +01:00
#product-table > thead tr > th:last-child,
#delivery-note-table > thead tr > th:last-child,
2020-11-05 14:47:09 +01:00
#task-table > thead tr > th:last-child {
text-align: right;
}
2020-11-05 14:47:09 +01:00
#product-table > thead tr > th:first-child,
#delivery-note-table > thead tr > th:first-child,
2020-11-05 14:47:09 +01:00
#task-table > thead tr > th:first-child {
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
2020-11-05 14:47:09 +01:00
#product-table > thead tr > th:last-child,
#delivery-note-table > thead tr > th:last-child,
2020-11-05 14:47:09 +01:00
#task-table > thead tr > th:last-child {
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
2020-11-05 14:47:09 +01:00
#product-table > tbody > tr > td,
#delivery-note-table > tbody > tr > td,
2020-11-05 14:47:09 +01:00
#task-table > tbody > tr > td {
2021-02-10 12:31:14 +01:00
background-color: #F7F7F7;
border-bottom: 1px solid var(--primary-color);
padding: 1rem;
}
2020-11-05 14:47:09 +01:00
#product-table > tbody > tr > td:first-child,
#delivery-note-table > tbody > tr > td:first-child,
2020-11-05 14:47:09 +01:00
#task-table > tbody > tr > td:first-child {
color: var(--primary-color);
}
2020-11-05 14:47:09 +01:00
#product-table > tbody > tr > td:last-child,
#delivery-note-table > tbody > tr > td:last-child,
2020-11-05 14:47:09 +01:00
#task-table > tbody > tr > td:last-child {
text-align: right;
}
2020-11-05 14:47:09 +01:00
#table-totals {
page-break-inside: avoid;
}
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;
2021-02-10 12:31:14 +01:00
padding-left: 3rem;
padding-right: 3rem;
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:47:09 +01:00
#table-totals
> *
[data-element='product-table-balance-due-label'],
2020-11-05 14:47:09 +01:00
#table-totals
> *
[data-element='product-table-balance-due'] {
font-weight: bold;
}
2020-11-05 14:47:09 +01:00
#table-totals
> *
[data-element='product-table-balance-due'] {
color: var(--primary-color);
}
2020-11-05 14:47:09 +01:00
#table-totals > * > :last-child {
text-align: right;
padding-right: 1rem;
}
2021-02-10 12:31:14 +01:00
#header {
position: fixed;
top: 0;
min-width: 100%;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
margin-left: -10px;
}
#header > * {
padding: 10px;
}
#footer {
position: fixed;
bottom: 0;
min-width: 100%;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
margin-left: -10px;
}
#footer > * {
padding: 5px;
}
</style>
2021-02-10 12:31:14 +01:00
<div id="header">
<div style="background-color: #00968B"><!-- 1 --></div>
<div style="background-color: #1D756E"><!-- 2 --></div>
<div style="background-color: #FCB600"><!-- 3 --></div>
<div style="background-color: #BA932F"><!-- 4 --></div>
<div style="background-color: #A72A4E"><!-- 5 --></div>
<div style="background-color: #E20041"><!-- 6 --></div>
<div style="background-color: #F8B300"><!-- 7 --></div>
<div style="background-color: #009B8F"><!-- 8 --></div>
</div>
<div id="body">
<div class="header-wrapper">
<img
class="company-logo"
src="$company.logo"
alt="$company.name logo"
/>
<div></div>
<div class="entity-details-wrapper">
<table id="entity-details" cellspacing="0"></table>
2020-08-11 17:53:21 +02:00
</div>
</div>
<div class="contacts-wrapper">
<div class="contact-wrapper-left-side">
<p class="contact-label">$to_label:</p>
<div class="company-info">
<div id="company-details"></div>
<div id="company-address"></div>
2020-07-21 19:00:17 +02:00
</div>
</div>
2020-09-04 13:18:17 +02:00
<div class="contact-wrapper-right-side">
<p class="contact-label">$from_label:</p>
<div id="client-details"></div>
2020-07-21 19:00:17 +02:00
</div>
</div>
<table id="product-table" cellspacing="0"></table>
2020-08-11 17:53:21 +02:00
2020-11-05 14:47:09 +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-07-21 19:00:17 +02:00
2021-02-10 12:31:14 +01:00
<div id="footer">
$entity_footer
<div style="background-color: #00968B"><!-- 1 --></div>
<div style="background-color: #1D756E"><!-- 2 --></div>
<div style="background-color: #FCB600"><!-- 3 --></div>
<div style="background-color: #BA932F"><!-- 4 --></div>
<div style="background-color: #A72A4E"><!-- 5 --></div>
<div style="background-color: #E20041"><!-- 6 --></div>
<div style="background-color: #F8B300"><!-- 7 --></div>
<div style="background-color: #009B8F"><!-- 8 --></div>
</div>
2020-09-11 11:53:52 +02:00