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

139 lines
3.9 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">
* {
margin: 0;
padding: 0;
font-size: 14px;
}
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: Arial, Helvetica, sans-serif;
}
@media print {
body {
margin: 0;
padding: 0;
}
}
body {
margin: 2rem;
}
.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;
}
#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;
}
#product-table-footer > * {
display: grid;
grid-template-columns: 3fr 1fr 1fr;
padding-top: 1rem;
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>
2020-09-04 13:18:17 +02:00
<body id="body">
<div class="header-wrapper" id="header">
<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-09-04 13:18:17 +02:00
<footer id="footer"></footer>
2020-07-20 17:41:07 +02:00
</body>
</html>