Files
ChooserApp/impressum.html

70 lines
2.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Impressum Finger Chooser</title>
<meta name="robots" content="noindex,follow">
<style>
*{box-sizing:border-box;margin:0;padding:0}
html,body{min-height:100%;background:#0c0c14;color:#e2e8f0;font-family:system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;line-height:1.6}
body{padding:40px 16px 60px}
.wrap{max-width:640px;margin:0 auto}
.back{display:inline-flex;align-items:center;gap:6px;color:rgba(255,255,255,0.4);font-size:14px;text-decoration:none;margin-bottom:32px;transition:color 150ms}
.back:hover{color:rgba(255,255,255,0.75)}
h1{font-size:28px;font-weight:800;letter-spacing:-0.5px;background:linear-gradient(135deg,#c084fc,#818cf8,#34d399);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:8px}
.subtitle{font-size:13px;color:rgba(255,255,255,0.35);margin-bottom:40px}
.card{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);border-radius:16px;padding:28px;margin-bottom:20px}
h2{font-size:14px;font-weight:600;color:rgba(255,255,255,0.5);text-transform:uppercase;letter-spacing:0.8px;margin-bottom:14px}
p,address{font-size:15px;color:rgba(255,255,255,0.75);font-style:normal;line-height:1.7}
a{color:#818cf8;text-decoration:none}
a:hover{text-decoration:underline}
</style>
</head>
<body>
<div class="wrap">
<a class="back" href="/">← Zurück zur App</a>
<h1>Impressum</h1>
<p class="subtitle">Angaben gemäß § 5 Digitale-Dienste-Gesetz (DDG)</p>
<div class="card">
<h2>Verantwortlich</h2>
<address>
<!-- Name und Adresse -->
</address>
</div>
<div class="card">
<h2>Kontakt</h2>
<p>
<!-- E-Mail -->
</p>
</div>
<div class="card">
<h2>Inhaltlich Verantwortlicher</h2>
<p>
Verantwortlich für den Inhalt nach § 18 Abs. 2 MStV:<br>
<!-- Name und Adresse -->
</p>
</div>
<div class="card">
<h2>Quellcode</h2>
<p>
Der Quellcode dieser Anwendung ist öffentlich einsehbar:<br>
<a href="https://git.leuschner.dev/Tobias/ChooserApp" target="_blank" rel="noopener noreferrer">git.leuschner.dev/Tobias/ChooserApp</a>
</p>
</div>
<div class="card">
<h2>Haftungsausschluss</h2>
<p>
Die Inhalte dieser Website wurden mit größter Sorgfalt erstellt. Für die Richtigkeit, Vollständigkeit und Aktualität der Inhalte kann keine Gewähr übernommen werden.
</p>
</div>
</div>
</body>
</html>