1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/resources/views/pdf-designs/clean.html
2020-08-10 13:18:05 +02:00

49 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<link rel="stylesheet" href="$css" />
</head>
<style>
#product-table tbody > tr:nth-child(even) {
background-color: #f7fafc;
}
</style>
<body class="$global-margin bg-white break-words antialiased">
<!-- Company logo, company details -->
<div class="grid grid-cols-12 px-2">
<img
src="$company_logo"
alt="$company_name logo"
class="grid w-24 col-span-4 sm:w-32"
/>
<div
class="grid grid-cols-2 col-span-8 text-gray-700 lg:col-span-6"
>
<div id="company-details" class="col-span-1"></div>
<div id="company-address" class="col-span-1"></div>
</div>
</div>
<!-- Entity labels, client details -->
<p class="mt-10 px-2 text-xl text-blue-500 uppercase">$entity_label</p>
<div class="grid grid-cols-12 px-2 py-3 mt-4 border-t border-b">
<div class="col-span-6">
<table id="entity-details"></table>
</div>
<div id="client-details" class="col-span-6"></div>
</div>
<!-- Product table -->
<table id="product-table" class="table-auto mt-12 w-full"></table>
</body>
</html>