88 lines
2.0 KiB
HTML
88 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Versandlabel</title>
|
|
<style>
|
|
@page {
|
|
margin: 0;
|
|
padding: 0;
|
|
size: 2046mm 360mm;
|
|
}
|
|
|
|
:root {
|
|
--container-width: 2046mm;
|
|
--container-height: 360mm;
|
|
}
|
|
|
|
body,
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 14px;
|
|
width: var(--container-width); /* Breite des Containers */
|
|
height: var(--container-height); /* Höhe des Containers */
|
|
}
|
|
|
|
.large-container {
|
|
width: var(--container-width); /* Breite des Containers */
|
|
height: var(--container-height); /* Höhe des Containers */
|
|
background-color: #808080; /* Hintergrundfarbe */
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.container {
|
|
height: var(--container-height); /* Höhe des Containers */
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="large-container">
|
|
<div
|
|
class="container"
|
|
style="width: 200mm; background-color: orange"
|
|
></div>
|
|
|
|
<div
|
|
class="container"
|
|
style="width: 12mm; background-color: #d9d9d9; position: absolute"
|
|
></div>
|
|
|
|
<div
|
|
class="container"
|
|
style="
|
|
width: 2400mm;
|
|
background-color: blue;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
"
|
|
>
|
|
<img src="Stempel.png" width="1500" />
|
|
</div>
|
|
|
|
<div class="container" style="width: 400mm; background-color: pink"></div>
|
|
|
|
<div
|
|
class="container"
|
|
style="
|
|
width: 2400mm;
|
|
background-color: purple;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
"
|
|
>
|
|
<img src="label.png" width="2600" />
|
|
</div>
|
|
|
|
<div
|
|
class="container"
|
|
style="width: 400mm; background-color: yellow"
|
|
></div>
|
|
</div>
|
|
</body>
|
|
</html>
|