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

65 lines
2.1 KiB
HTML
Raw Normal View History

2020-07-21 19:00:17 +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" />
<link rel="stylesheet" href="$css" />
</head>
<style>
#product-table tbody > tr > td:first-child {
color: #9b2c2c;
}
#product-table tbody > tr > td:last-child {
2020-08-05 15:40:57 +02:00
color: #9b2c2c;
2020-07-21 19:00:17 +02:00
font-weight: bold;
}
</style>
<body class="$global-margin antialiased bg-white break-words">
<!-- Company logo, entity details -->
<div class="grid grid-cols-12 gap-4">
<div class="col-span-4">
<img
2020-08-05 15:40:57 +02:00
src="$company.logo"
alt="$company.name logo"
2020-07-21 19:00:17 +02:00
class="w-24 col-span-4 sm:w-32"
/>
</div>
2020-08-05 15:40:57 +02:00
<div class="col-span-6 col-start-7 p-5 bg-teal-600 rounded-lg">
2020-07-21 19:00:17 +02:00
<table id="entity-details" class="text-white"></table>
</div>
</div>
<!-- Company details, client details -->
<div class="grid grid-cols-12 gap-12 mt-12">
<div class="col-span-6">
2020-08-07 17:47:17 +02:00
<p class="px-4 font-semibold text-teal-600">$to_label:</p>
2020-07-21 19:00:17 +02:00
<div
class="p-4 mt-4 border-t-4 border-b-4 border-teal-600 border-dashed"
>
<div id="client-details"></div>
</div>
</div>
<div class="col-span-6">
2020-08-07 17:47:17 +02:00
<p class="px-4 font-semibold text-teal-600">$from_label:</p>
2020-07-21 19:00:17 +02:00
<div
class="flex p-4 mt-4 space-x-4 border-t-4 border-b-4 border-teal-600 border-dashed"
>
<div id="company-details"></div>
<div id="company-address"></div>
</div>
</div>
</div>
<!-- Product table -->
<table id="product-table" class="w-full mt-10 table-auto"></table>
</body>
</html>