1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/resources/views/pdf-designs/bold.html

69 lines
2.2 KiB
HTML
Raw Normal View History

2020-07-20 17:03:52 +02:00
<!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" />
2020-08-12 19:14:22 +02:00
<link rel="stylesheet" href="$app_url/css/tailwindcss@1.4.6.css" />
2020-07-20 17:03:52 +02:00
</head>
<style>
#product-table tbody > tr:nth-child(even) {
background-color: #edf2f7;
}
</style>
<body class="antialiased break-words bg-white">
<!-- Company logo, company details -->
<div class="$global-padding static bg-gray-800">
<div class="grid grid-cols-12">
<div class="absolute col-span-4 p-6 pb-10 bg-white">
<img
2020-08-05 12:13:48 +02:00
src="$company.logo"
alt="$company.name logo"
2020-07-20 17:03:52 +02:00
class="w-24 col-span-4 sm:w-32"
/>
</div>
<div
class="flex justify-between col-span-8 col-start-6 lg:col-span-6 lg:col-start-8"
>
<div id="company-details" class="text-white"></div>
<div id="company-address" class="text-white"></div>
</div>
</div>
</div>
2020-08-05 12:13:48 +02:00
</div>
2020-07-20 17:03:52 +02:00
<!-- Client details, entity details -->
<div class="grid grid-cols-12 gap-4 my-12 ml-12">
<div class="col-span-6">
<h2
class="text-2xl font-semibold tracking-tight text-teal-600 uppercase"
>
2020-08-07 17:47:17 +02:00
$your_entity_label
2020-07-20 17:03:52 +02:00
</h2>
<div id="client-details" class="mt-4"></div>
</div>
<div class="col-span-6">
<div class="h-auto px-4 py-4 bg-teal-600">
<table
class="flex justify-between text-white"
id="entity-details"
></table>
</div>
</div>
</div>
<!-- Product table -->
<div class="$global-margin">
<table id="product-table" class="w-full mt-8 table-auto"></table>
</div>
</body>
<footer id="footer"></footer>
2020-07-20 17:03:52 +02:00
</html>