154 lines
3.3 KiB
HTML
154 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>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 black;
|
|
}
|
|
|
|
.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: 20px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.content {
|
|
max-width: 180px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.product-variant {
|
|
/* display: inline-block; */
|
|
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">
|
|
<h1>Gizmo</h1>
|
|
<h1 style="margin: 0">die Eidechse</h1>
|
|
<p class="product-color">Grün/Blau/Orange</p>
|
|
<p class="product-color">(Glänzend)</p>
|
|
|
|
<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 10</p>
|
|
<p>D-34212 Melsungen</p>
|
|
</div>
|
|
|
|
<img class="ce" src="ce.svg" />
|
|
</div>
|
|
</div>
|
|
</div>-->
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|