admin-dashboard-backend/groupTasks/groups/shx-product-label/index.html

171 lines
3.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script src="index.js"></script>
<style>
:root {
--container-width: 793px;
--container-height: 1122px;
}
@page {
margin: 0;
padding: 0;
size: A4;
}
@font-face {
font-family: "Outfit";
src: url("../../groupsData/static/Outfit-VariableFont_wght.ttf");
}
.label {
position: relative;
width: 226px;
height: 226px;
border-radius: 200px;
display: flex;
justify-content: center;
text-align: center;
border: 1px solid #fff;
}
.background-image {
position: absolute;
margin-top: 10px;
width: 100%;
height: 100%;
background-image: url("../../groupsData/shx-product-label/background.svg");
background-repeat: no-repeat;
background-position: center;
background-size: 50%;
opacity: 0.1;
}
h1 {
font-size: 24px;
margin-top: 8px;
margin-bottom: 0;
}
p {
margin: 0;
font-size: 16px;
}
.content {
max-width: 180px;
white-space: nowrap;
overflow: hidden;
}
.product-container {
top: -4px;
position: relative;
}
.product-variant {
font-weight: 600;
font-size: 10px;
margin: 0;
padding: 0;
top: 4px;
position: relative;
color: #464646;
letter-spacing: 1.8px;
}
.product-characteristic {
font-weight: 300;
}
.product-id {
margin-top: 10px;
font-size: 14px;
color: #464646;
font-weight: 200;
}
.container {
display: flex;
align-items: center;
justify-content: center;
height: 30px;
}
.children {
height: 100%;
}
.ce {
height: 70%;
}
.manufacturer-info {
padding-top: 60px;
}
.manufacturer-info p {
font-size: 7px;
font-weight: 350;
}
</style>
</head>
<body
style="
font-family: 'Outfit';
font-size: 14px;
margin: 0;
position: relative;
width: var(--container-width);
height: var(--container-height);
"
>
<div style="width: var(--container-width); height: var(--container-height)">
<div
id="labels"
style="
display: grid;
grid-template-columns: auto auto auto;
gap: 24px;
padding-left: 28px;
padding-right: 28px;
padding-top: 68px;
padding-bottom: 68px;
"
>
<!--
<div class="label">
<div class="background-image"></div>
<div class="content">
<div class="product-container">
<h1>Gizmo</h1>
<h1 style="margin: 0">die Eidechse</h1>
<p class="product-characteristic">Grün/Blau/Orange</p>
<p class="product-characteristic">(Glänzend)</p>
</div>
<p class="product-id">#32420</p>
<div class="container">
<img class="children" src="children.png" />
<div class="manufacturer-info">
<p>Hersteller:</p>
<p>Jan Umbach</p>
<p>Tannenwäldchen 20</p>
<p>D-34212 Melsungen</p>
</div>
<img class="ce" src="ce.svg" />
</div>
</div>
</div>-->
</div>
</div>
</body>
</html>