mein-sterntours/resources/views/pdf/layout.blade.php
Kevin Adametz 881fc84207 08 2024
2024-08-05 11:58:09 +02:00

246 lines
No EOL
6.2 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<base href="{{ url('/') }}">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>STERN TOURS</title>
<style>
/*DIN LANG*/
@font-face {
font-family: "Source Sans 3";
src: url("fonts/source-sans-3-v15-latin-regular.ttf") format("truetype");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Source Sans 3';
font-style: normal;
font-weight: 500;
src: url('fonts/source-sans-3-v15-latin-500.ttf') format('truetype');
}
@font-face {
font-family: 'Source Sans 3';
font-style: normal;
font-weight: 600;
src: url('fonts/source-sans-3-v15-latin-600.ttf') format('truetype');
}
@font-face {
font-family: 'Source Sans 3';
font-style: normal;
font-weight: 700;
src: url('fonts/source-sans-3-v15-latin-700.ttf') format('truetype');
}
html {
width: 100%;
height: 100%;
}
body {
position: relative;
width: 100%;
height: 100%;
margin: 0 auto;
padding: 0;
color: #000;
font-size: 9pt;
line-height: 1.1em;
font-weight: 400 ;
font-family: "Source Sans 3", serif;
}
table {
border: none;
}
strong {
font-weight: bold;
}
u {
text-decoration: none;
}
@page {
margin: 0px;
}
@page {
margin-top: 0px;
}
@page {
margin: 90mm 0 30mm 0;
color:#000;
}
.font-weight-bold {
font-weight: bold;
}
#logo_box {
position: absolute;
top:-80mm;
left: 25mm;
right: 25mm;
height: 25mm;
z-index: 1;
font-size: 10pt;
text-align: center;
}
#logo_box img {
width: 65mm;
}
#address_box {
position: absolute;
top:-40mm;
left: 25mm;
width: 100mm;
height: 45mm;
z-index: 1;
font-size: 10pt;
color:#000;
}
#address_box #address_back{
font-size: 7pt;
text-decoration: none;
line-height: 1.6em;
margin-bottom: 2mm;
color:#000;
}
#date_box {
position: absolute;
top:-10mm;
right: 15mm;
width: 70mm;
height: 10mm;
z-index: 1;
font-size: 10pt;
text-align: right;
color:#000;
}
#title_box {
position: absolute;
top:0mm;
left: 25mm;
width: 160mm;
height: 10mm;
z-index: 2;
font-weight: bold;
color:#000;
}
#title_box .title {
font-size: 16pt;
color:#000;
}
#title_box .subtitle {
font-size: 9pt;
color:#000;
}
#detail_box {
position: absolute;
top:15mm;
left: 25mm;
right: 15mm;
z-index: 3;
font-size: 9pt;
color:#000;
}
#detail_box table {
width: 100%;
border-collapse: collapse;
color:#000;
}
#detail_box table td {
border: 0.5pt solid #8c8c8c;
padding: 1mm;
color:#000;
}
#detail_box table td.left {
text-align: right;
width: 50mm;
color:#000;
}
#detail_box table td.right {
text-align: left;
color:#000;
}
.singel-line-top {
border-top: 1pt solid #1a1a18;
}
.double-line {
border-bottom: 2.5pt double #1a1a18;
}
.dotted-line {
border-bottom: 0.8pt dotted #1a1a18;
}
#footer_box {
position: absolute;
bottom:-25mm;
left: 25mm;
right: 15mm;
height: 30mm;
z-index: 6;
font-size: 7pt;
line-height: 1.1em;
}
#footer_box table {
margin-top: 2mm;
width: 100%;
}
#footer_box table td {
vertical-align: top;
} </style>
</head>
<body>
@yield('content')
<div id="footer_box">
<strong>P.S.: Wir empfehlen dringend, den Abschluss einer Reiserücktrittskostenversicherung.</strong>
<table>
<tr>
<td style="width: 20%">
<strong>STERN TOURS GmbH</strong><br>
Emser Str. 3<br>
10719 Berlin<br>
</td>
<td>
<strong>Tel.:</strong> 030 | 88 0 313 0<br>
<strong>Fax:</strong> 030 | 88 0 313 44<br>
<strong>E-Mail:</strong> kontakt@sterntours.de<br>
<strong>Web:</strong> www.sterntours.de
</td>
<td>
<strong>Bankverbindung:</strong><br>
STERN TOURS<br>
Hypo Vereinsbank<br>
IBAN: DE83100208900018857111<br>
BIC-/SWIFT-Code: HYVEDEMM488
</td>
<td>
<strong>Öffnungszeiten:</strong><br>
Mo-Do: 09.00-18.00 Uhr<br>
FR: 09.00-16.00 Uhr<br><br>
UStId: DE192609253<br>
Registernr.: HRB 67111<br>
Amtsgericht Charlottenburg<br>
</td>
</tr>
</table>
</div>
</body>
</html>