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

190 lines
5.7 KiB
HTML
Raw Normal View History

2020-07-21 19:00:17 +02:00
<!DOCTYPE html>
2020-09-04 13:18:17 +02:00
<html lang="en">
<head id="head">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2020-07-21 19:00:17 +02:00
2020-09-04 13:18:17 +02:00
<style id="style">
* {
margin: 0;
padding: 0;
font-size: 14px;
}
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: Arial, Helvetica, sans-serif;
}
2020-07-21 19:00:17 +02:00
2020-09-04 13:18:17 +02:00
@media print {
body {
margin: 0;
padding: 0;
}
}
body {
margin: 2rem;
}
2020-09-04 13:18:17 +02:00
.header-wrapper {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
.header-wrapper .company-logo {
height: 5rem;
}
.header-wrapper .entity-details-wrapper {
background-color: #009e90;
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;
}
2020-09-04 13:18:17 +02:00
.contacts-wrapper {
margin-top: 3rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}
.contacts-wrapper .contact-label {
font-weight: bold;
color: #009e90;
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 #009e90;
border-bottom: 1px solid #009e90;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.contacts-wrapper #client-details {
margin-top: 1rem;
padding: 1rem;
border-top: 1px solid #009e90;
border-bottom: 1px solid #009e90;
}
#product-table {
margin-top: 3rem;
min-width: 100%;
table-layout: fixed;
overflow-wrap: break-word;
}
#product-table > thead {
text-align: left;
}
#product-table > thead > tr > th {
font-size: 1.2rem;
padding: 1rem;
background: #009e90;
color: white;
}
2020-09-08 13:14:44 +02:00
#product-table > thead tr > th:last-child {
text-align: right;
}
2020-09-04 13:18:17 +02:00
#product-table > thead tr > th:first-child {
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
#product-table > thead tr > th:last-child {
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
#product-table > tbody > tr > td {
border-bottom: 1px solid #009e90;
padding: 1rem;
}
#product-table > tbody > tr > td:first-child {
color: #bb3a24;
}
2020-09-08 13:14:44 +02:00
#product-table > tbody > tr > td:last-child {
text-align: right;
2020-09-04 13:18:17 +02:00
}
2020-09-08 13:14:44 +02:00
#product-table-footer > * {
display: grid;
grid-template-columns: 3fr 1fr 1fr;
padding-top: 1rem;
padding-left: 1rem;
gap: 20px;
}
#product-table-footer
> *
[data-element='product-table-balance-due-label'],
#product-table-footer
> *
[data-element='product-table-balance-due'] {
font-weight: bold;
2020-09-04 13:18:17 +02:00
}
2020-09-08 13:14:44 +02:00
#product-table-footer
> *
[data-element='product-table-balance-due'] {
color: #009e90;
}
#product-table-footer > * > :last-child {
text-align: right;
padding-right: 1rem;
2020-09-04 13:18:17 +02:00
}
</style>
</head>
2020-09-04 13:18:17 +02:00
<body id="body">
<div class="header-wrapper" id="header">
<img
class="company-logo"
src="$company.logo"
alt="$company.name logo"
/>
2020-07-21 19:00:17 +02:00
2020-09-04 13:18:17 +02:00
<div>
<!-- Placeholder for empty space -->
</div>
2020-09-04 13:18:17 +02:00
<div class="entity-details-wrapper">
<table id="entity-details" cellspacing="0"></table>
</div>
2020-08-11 17:53:21 +02:00
</div>
2020-07-21 19:00:17 +02:00
2020-09-04 13:18:17 +02:00
<div class="contacts-wrapper">
<div>
<p class="contact-label">$to_label:</p>
<div class="company-info">
<div id="company-details"></div>
<div id="company-address"></div>
</div>
2020-07-21 19:00:17 +02:00
</div>
2020-09-04 13:18:17 +02:00
<div>
<p class="contact-label">$from_label:</p>
<div id="client-details"></div>
</div>
2020-07-21 19:00:17 +02:00
</div>
2020-08-11 17:53:21 +02:00
2020-09-04 13:18:17 +02:00
<table id="product-table" cellspacing="0"></table>
2020-07-21 19:00:17 +02:00
2020-09-08 13:14:44 +02:00
<div id="product-table-footer" cellspacing="0"></div>
2020-09-04 13:18:17 +02:00
<footer id="footer"></footer>
</body>
</html>