134 lines
3.3 KiB
HTML
134 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Intern Product Bag Label</title>
|
|
<style>
|
|
:root {
|
|
--container-width: 1020px;
|
|
--container-height: 1020px;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Outfit";
|
|
src: url("../../groupsData/static/Outfit-VariableFont_wght.ttf");
|
|
}
|
|
|
|
body,
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 14px;
|
|
width: var(--container-width);
|
|
height: var(--container-height);
|
|
overflow: hidden;
|
|
font-family: "Outfit";
|
|
}
|
|
|
|
.container {
|
|
width: var(--container-width);
|
|
height: var(--container-height);
|
|
}
|
|
|
|
.inner-container {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
height: 100%;
|
|
}
|
|
|
|
h3 {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="inner-container">
|
|
<div style="padding-left: 20px; padding-right: 20px">
|
|
<div
|
|
style="
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
"
|
|
>
|
|
<h1
|
|
style="
|
|
font-size: 128px;
|
|
margin: 0;
|
|
font-weight: 400;
|
|
letter-spacing: 20px;
|
|
"
|
|
>
|
|
{{PRODUCT_ID}}
|
|
</h1>
|
|
<img
|
|
style="width: 140px"
|
|
src="../../groupsData/shx-intern-product-bag-label/logo.svg"
|
|
/>
|
|
</div>
|
|
|
|
<h2
|
|
style="
|
|
position: relative;
|
|
left: -5px;
|
|
font-size: 80px;
|
|
padding-top: 40px;
|
|
margin: 0;
|
|
font-weight: 200;
|
|
"
|
|
>
|
|
{{PRODUCT_NAME}}
|
|
</h2>
|
|
<div style="position: relative; top: -10px">
|
|
<h3
|
|
style="
|
|
position: relative;
|
|
top: 10px;
|
|
font-size: 32px;
|
|
font-weight: 600;
|
|
letter-spacing: 4px;
|
|
"
|
|
>
|
|
{{PRODUCT_VARIANT}}
|
|
</h3>
|
|
<h3 style="font-size: 48px; font-weight: 300">
|
|
{{PRODUCT_CHARACTERISTIC_LINE_1}}
|
|
</h3>
|
|
<h3
|
|
style="
|
|
position: relative;
|
|
top: -10px;
|
|
font-size: 48px;
|
|
font-weight: 300;
|
|
"
|
|
>
|
|
{{PRODUCT_CHARACTERISTIC_LINE_2}}
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
style="padding-left: 20px; padding-right: 20px; padding-bottom: 20px"
|
|
>
|
|
<img src="qrcode.png" style="padding-top: 40px; width: 400px" />
|
|
|
|
<div style="display: flex; justify-content: right; padding-top: 20px">
|
|
<h3 style="font-size: 48px; font-weight: 400; letter-spacing: 4px">
|
|
{{DATE}}
|
|
</h3>
|
|
</div>
|
|
|
|
<div
|
|
style="height: 10px; background-color: #000; border-radius: 50px"
|
|
></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|