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

159 lines
4.5 KiB
HTML
Raw Normal View History

2020-09-04 13:18:17 +02:00
<!-- Template: Clean -->
2020-07-20 14:10:33 +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">
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: Arial, Helvetica, sans-serif;
font-size: '$font-size';
2020-09-04 13:18:17 +02:00
}
2020-09-08 12:40:04 +02:00
@page {
margin: 1cm;
2020-09-08 12:40:04 +02:00
}
2020-09-04 13:18:17 +02:00
.header-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 20px;
}
.header-container .company-logo {
height: 4rem;
}
#company-details {
display: flex;
flex-direction: column;
color: #9f9f9f;
}
#company-details > span:first-child {
color: #67b1cc;
}
#company-address {
display: flex;
flex-direction: column;
color: #9f9f9f;
}
.entity-label {
text-transform: uppercase;
margin-top: 3.5rem;
font-weight: semibold;
color: #67b1cc;
}
2020-07-20 14:10:33 +02:00
2020-09-04 13:18:17 +02:00
.client-and-entity-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
padding-left: 1rem;
padding-right: 1rem;
padding-top: 1rem;
padding-bottom: 1rem;
border-top: 1px solid #9f9f9f;
border-bottom: 1px solid #9f9f9f;
}
2020-09-04 13:18:17 +02:00
#entity-details {
text-align: left;
}
#entity-details > tr,
#entity-details th {
font-weight: normal;
}
2020-09-04 13:18:17 +02:00
#client-details {
display: flex;
flex-direction: column;
}
#client-details > :first-child {
font-weight: bold;
}
2020-07-20 14:10:33 +02:00
2020-09-04 13:18:17 +02:00
#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.1rem;
padding-bottom: 1.5rem;
padding-left: 1rem;
}
#product-table > tbody > tr > td {
border-bottom: 1px solid #9f9f9f;
padding: 1rem;
}
#product-table > tbody > tr > td:first-child {
color: #67b1cc;
}
#product-table > tbody > tr:nth-child(odd) {
background-color: #f5f5f5;
}
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;
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-label'],
#product-table-footer
> *
[data-element='product-table-balance-due'] {
2020-09-04 13:18:17 +02:00
font-weight: bold;
}
2020-09-08 13:14:44 +02:00
#product-table-footer
> *
[data-element='product-table-balance-due'] {
color: #67b1cc;
}
#product-table-footer > * > :last-child {
text-align: right;
padding-right: 1rem;
}
2020-09-04 13:18:17 +02:00
</style>
</head>
<div id="header"></div>
2020-09-04 13:18:17 +02:00
<body id="body">
<div class="header-container">
2020-08-05 14:24:10 +02:00
<img
2020-09-04 13:18:17 +02:00
class="company-logo"
src="$company.logo"
alt="$company.name logo"
2020-08-05 14:24:10 +02:00
/>
2020-09-04 13:18:17 +02:00
<div id="company-details"></div>
<div id="company-address"></div>
2020-07-20 14:10:33 +02:00
</div>
2020-09-04 13:18:17 +02:00
<p class="entity-label">$entity_label</p>
<div class="client-and-entity-wrapper">
<table id="entity-details" cellspacing="0"></table>
<div id="client-details"></div>
2020-08-05 14:24:10 +02:00
</div>
2020-07-20 14:10:33 +02:00
2020-09-04 13:18:17 +02:00
<!-- product_table -->
<table id="product-table" cellspacing="0"></table>
2020-09-08 13:14:44 +02:00
<div id="product-table-footer" cellspacing="0"></div>
2020-09-04 13:18:17 +02:00
</body>
<div id="footer"><!-- Your footer content here --></div>
2020-08-05 14:24:10 +02:00
</html>