Playful footer elements

This commit is contained in:
Benjamin Beganović 2020-08-11 17:53:21 +02:00
parent 9c1cfd2e86
commit 00903c717a

View File

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