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

85 lines
2.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="$app_url/css/tailwindcss@1.4.6.css" />
</head>
<style>
thead th:first-child {
border-top-left-radius: 0.5rem;
border-bottom-left-radius: 0.3rem;
}
thead th:last-child {
border-top-right-radius: 0.5rem;
border-bottom-right-radius: 0.3rem;
}
tbody > tr > td:first-child {
color: #d03801;
}
/** Required for proper margins on print **/
@page {
margin-top: 8.5mm;
margin-bottom: 8.5mm;
}
/** Custom CSS goes here.. */
</style>
<body class="$global-margin bg-white break-words antialiased">
<!-- Logo, company details & company address -->
<div class="flex grid items-start grid-cols-12 gap-4" id="header">
<img
src="$company.logo"
alt="$company.name"
class="grid w-24 col-span-4 sm:w-32"
/>
<div
class="grid grid-cols-2 col-span-8 space-x-10 text-gray-700 lg:col-start-8"
>
<div
id="company-details"
class="col-span-1 text-gray-500"
></div>
<div
id="company-address"
class="col-span-1 text-gray-500"
></div>
</div>
</div>
<!-- Client details, entity details -->
<div class="grid grid-cols-12 gap-4 my-12">
<div class="col-span-6">
<p>$entity_issued_to_label</p>
<div id="client-details" class="mt-4 text-orange-600"></div>
</div>
<div class="col-span-6">
<div class="h-auto px-4 py-4 bg-orange-600 rounded-lg">
<table
class="flex justify-between text-white"
id="entity-details"
></table>
</div>
</div>
</div>
<!-- Product table -->
<table
id="product-table"
class="w-full mt-20 rounded table-auto $table-padding"
></table>
</body>
<footer id="footer"></footer>
</html>