1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/resources/views/pdf-designs/plain.html

141 lines
4.0 KiB
HTML
Raw Normal View History

2020-07-20 17:41:07 +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">
* {
2020-10-01 13:37:34 +02:00
font-size: '$font_size';
2020-09-04 13:18:17 +02:00
}
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
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: Arial, Helvetica, sans-serif;
margin: 1cm;
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 #company-address {
display: flex;
flex-direction: column;
}
.header-wrapper #entity-details {
margin-top: 1.5rem;
text-align: left;
width: 100%;
}
.header-wrapper #entity-details > tr,
.header-wrapper #entity-details th {
font-weight: normal;
padding-left: 0.9rem;
padding-top: 0.3rem;
padding-bottom: 0.3rem;
}
.header-wrapper
#entity-details
[data-element='entity-balance-due-label'],
.header-wrapper
#entity-details
[data-element='entity-balance-due'] {
background-color: #e6e6e6;
}
#client-details {
display: flex;
flex-direction: column;
}
#product-table {
min-width: 100%;
table-layout: fixed;
overflow-wrap: break-word;
margin-top: 3rem;
margin-bottom: 200px;
2020-09-04 13:18:17 +02:00
}
#product-table > thead {
text-align: left;
}
#product-table > thead > tr > th {
padding: 1rem;
background-color: #e6e6e6;
}
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 #e6e6e6;
padding: 1rem;
}
2020-09-08 13:14:44 +02:00
#product-table > tbody > tr > td:last-child {
text-align: right;
}
2020-09-11 16:46:09 +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:46:09 +02:00
padding-top: .5rem;
2020-09-08 13:14:44 +02:00
padding-left: 1rem;
gap: 20px;
2020-09-04 13:18:17 +02:00
}
2020-09-08 13:14:44 +02:00
#product-table-footer
> *
2020-09-04 13:18:17 +02:00
[data-element='product-table-balance-due-label'],
2020-09-08 13:14:44 +02:00
#product-table-footer
> *
[data-element='product-table-balance-due'] {
font-weight: bold;
}
#product-table-footer > * > :last-child {
text-align: right;
padding-right: 1rem;
2020-09-04 13:18:17 +02:00
}
</style>
2020-07-20 17:41:07 +02:00
</head>
<div id="header"></div>
2020-09-04 13:18:17 +02:00
<body id="body">
<div class="header-wrapper">
2020-09-04 13:18:17 +02:00
<p>$company.name</p>
<div id="company-address"></div>
<div>
2020-07-20 17:41:07 +02:00
<img
2020-09-04 13:18:17 +02:00
class="company-logo"
2020-07-29 14:53:58 +02:00
src="$company.logo"
alt="$company.name logo"
2020-07-20 17:41:07 +02:00
/>
2020-09-04 13:18:17 +02:00
<table id="entity-details" cellspacing="0"></table>
2020-07-20 17:41:07 +02:00
</div>
</div>
2020-09-04 13:18:17 +02:00
<div id="client-details"></div>
2020-09-08 13:14:44 +02:00
2020-09-04 13:18:17 +02:00
<table id="product-table" cellspacing="0"></table>
2020-07-20 17:41:07 +02:00
2020-09-08 13:14:44 +02:00
<div id="product-table-footer" cellspacing="0"></div>
2020-07-20 17:41:07 +02:00
</body>
2020-09-11 11:53:52 +02:00
2020-10-01 13:40:09 +02:00
<div id="footer"></div>
2020-07-20 17:41:07 +02:00
</html>