From 2102bfa8bdfde1b6696a33005a638e42f54525e6 Mon Sep 17 00:00:00 2001 From: Kato Date: Tue, 8 Sep 2026 17:14:56 +0000 Subject: [PATCH] Add legal page (footer link) + wiki modal disclaimer link to general-orientation notice --- css/styles.css | 61 ++++++++++++++++++++++++++++++++++++++++++++ index.html | 2 ++ js/main.js | 3 +++ legal.html | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 134 insertions(+) create mode 100644 legal.html diff --git a/css/styles.css b/css/styles.css index 4ba71b5..693b5ff 100644 --- a/css/styles.css +++ b/css/styles.css @@ -1547,6 +1547,16 @@ body[data-lang="en"] .hide-de { display: none !important; } background: #e4e6eb; color: #1c1e21; } +.wiki-modal-note { + font-size: 12px; + line-height: 1.5; + color: #65676b; + margin-top: 16px; + padding-top: 10px; + border-top: 1px solid #e4e6eb; +} +.wiki-modal-note a { color: #1877f2; text-decoration: none; } +.wiki-modal-note a:hover { text-decoration: underline; } TELEGRAM BANNER ======================================== */ @@ -1655,6 +1665,57 @@ TELEGRAM BANNER } /* Underline slide-in effect */ .footer-bottom { padding-top: 16px; } + +/* ======================================== + LEGAL PAGE (legal.html) + ======================================== */ +.legal-page { + min-height: 100vh; + background: #f7f8fa; +} +.legal-bar { + display: flex; + align-items: center; + justify-content: space-between; + padding: 16px 24px; + background: #fff; + border-bottom: 1px solid #e4e6eb; +} +.legal-title { + font-size: 15px; + font-weight: 700; + color: #1c1e21; +} +.legal-container { + max-width: 820px; + margin: 32px auto; + padding: 32px 28px; + background: #fff; + border: 1px solid #e4e6eb; + border-radius: 14px; + box-shadow: 0 4px 16px rgba(0,0,0,0.06); +} +.legal-back { + display: inline-block; + color: #1877f2; + font-weight: 600; + font-size: 14px; + margin-bottom: 24px; + text-decoration: none; +} +.legal-back:hover { text-decoration: underline; } +.legal-h1 { + font-size: 22px; + font-weight: 700; + color: #1c1e21; + margin-bottom: 20px; +} +.legal-p { + font-size: 15px; + line-height: 1.7; + color: #333; + margin-bottom: 18px; +} @media (min-width: 769px) { .nav-toggle { display: none; } } diff --git a/index.html b/index.html index b0b59db..904a6ae 100644 --- a/index.html +++ b/index.html @@ -523,6 +523,8 @@ Gesponsert von Sponsored by ODOO4projects +  ·  + RechtlichesLegal

diff --git a/js/main.js b/js/main.js index c23b86b..c593ba5 100644 --- a/js/main.js +++ b/js/main.js @@ -929,6 +929,9 @@ function openWikiModalSingle(item) { if (dateStr) html += '
' + dateStr + '
'; html += ''; html += '
' + sanitizeHtml(content) + '
'; + html += '
' + (isDE() + ? 'Diese Informationen dienen der allgemeinen Orientierung und sind keine verbindliche Beratung.' + : 'This information serves for general orientation only and is not binding advice.') + '
'; html += ''; modalOverlay.innerHTML = html; modalOverlay.classList.add('active'); diff --git a/legal.html b/legal.html new file mode 100644 index 0000000..318207b --- /dev/null +++ b/legal.html @@ -0,0 +1,68 @@ + + + + + + + + + Impressum & Haftung — Paraguay LLC & SRL Community + + + + + + + + + + + + + + \ No newline at end of file