1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/resources/views/pdf-designs/modern.html

189 lines
5.2 KiB
HTML
Raw Normal View History

2020-07-20 15:05:57 +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" />
<style id="style">
* {
font-size: '$font-size';
2020-09-08 12:40:04 +02:00
}
2020-09-04 13:18:17 +02:00
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: Arial, Helvetica, sans-serif;
}
2020-09-11 11:53:52 +02:00
p {
margin: 0;
padding: 0;
page-break-after: always;
}
2020-09-04 13:18:17 +02:00
.header-container {
background-color: #f46521;
color: white;
display: grid;
grid-template-columns: 1.5fr 1fr;
padding: 1.5rem;
}
.header-container .company-name {
font-size: 2.5rem;
}
#entity-details {
text-align: left;
color: #fff4e9 !important;
}
#entity-details > tr,
#entity-details th {
font-weight: normal;
padding-bottom: 0.5rem;
}
.company-logo {
height: 5rem;
}
.logo-client-wrapper {
margin: 3rem 1.5rem;
display: grid;
grid-template-columns: 1.5fr 1fr;
}
#client-details {
display: flex;
flex-direction: column;
}
#client-details > * {
margin-bottom: 0.5rem;
}
.table-wrapper {
margin: 3rem 1.5rem;
}
#product-table {
min-width: 100%;
table-layout: fixed;
overflow-wrap: break-word;
}
#product-table > thead {
text-align: left;
}
#product-table > thead > tr > th {
padding: 0.8rem;
background-color: #3f3e3c;
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 > tbody > tr > td {
border-bottom: 1px solid #3f3e3c;
padding: 1rem;
}
#product-table > tbody > tr > td:first-child {
font-weight: bold;
}
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
}
.footer-wrapper {
display: grid;
2020-09-11 11:53:52 +02:00
gap: 15px;
2020-09-04 13:18:17 +02:00
width: 100%;
padding: 1.5rem;
2020-09-11 11:53:52 +02:00
grid-template-columns: 1fr 1fr 1fr;
2020-09-04 13:18:17 +02:00
background-color: #f46521;
color: #fff4e9;
2020-09-11 11:53:52 +02:00
margin-right: 1rem;
margin-top: 1rem;
2020-09-04 13:18:17 +02:00
}
#company-address,
#company-details {
display: flex;
flex-direction: column;
2020-09-11 11:53:52 +02:00
margin-top: 2rem;
margin-bottom: 2rem;
2020-09-04 13:18:17 +02:00
}
#company-address > *,
#company-details > * {
margin-bottom: 0.5rem;
}
2020-09-08 13:14:44 +02:00
2020-09-11 16:54:56 +02:00
#product-table-footer {
page-break-inside: avoid;
}
2020-09-08 13:14:44 +02:00
#product-table-footer > * {
display: grid;
grid-template-columns: 3fr 1fr 1fr;
2020-09-11 16:54:56 +02:00
margin-top: .5rem;
2020-09-08 13:14:44 +02:00
margin-right: 1.5rem;
margin-left: 1.5rem;
}
#product-table-footer
> *
[data-element='product-table-balance-due-label'],
#product-table-footer
> *
[data-element='product-table-balance-due'] {
font-weight: bold;
font-size: 1.3rem;
}
#product-table-footer > * > * {
padding-left: 1.5rem;
}
#product-table-footer > * > :last-child {
text-align: right;
padding-right: 1rem;
}
#product-table-footer > *:last-child {
background-color: #3f3e3c;
color: white;
padding-top: 0.7rem;
padding-bottom: 0.7rem;
}
2020-09-04 13:18:17 +02:00
</style>
2020-08-05 15:17:45 +02:00
</head>
2020-07-20 15:05:57 +02:00
<div class="header-container" id="header">
<h1 class="company-name">$company.name</h1>
2020-09-04 13:18:17 +02:00
<table id="entity-details" cellspacing="0"></table>
</div>
2020-07-20 15:05:57 +02:00
<body id="body">
2020-09-04 13:18:17 +02:00
<div class="logo-client-wrapper">
<img
class="company-logo"
src="$company.logo"
alt="$company.name logo"
/>
2020-07-20 15:05:57 +02:00
2020-09-04 13:18:17 +02:00
<div id="client-details"></div>
2020-08-05 15:17:45 +02:00
</div>
2020-07-20 16:26:30 +02:00
2020-09-04 13:18:17 +02:00
<div class="table-wrapper">
<table id="product-table" cellspacing="0"></table>
</div>
2020-09-11 11:53:52 +02:00
<div id="product-table-footer" cellspacing="0"></div>
</body>
2020-09-08 13:14:44 +02:00
2020-09-11 11:53:52 +02:00
<div class="footer-wrapper">
<div>
<!-- Placeholder for offset -->
2020-09-04 13:18:17 +02:00
</div>
2020-09-08 13:14:44 +02:00
<div id="company-details"></div>
<div id="company-address"></div>
</div>
2020-09-11 11:53:52 +02:00
<div id="footer"></div>
2020-08-05 15:17:45 +02:00
</html>