From 682ad554609a9546356d60bd832ca20108100415 Mon Sep 17 00:00:00 2001
From: Kato
Date: Sat, 5 Sep 2026 21:15:47 +0000
Subject: [PATCH] About locked image: 13px blur overlay + CTA with Telegram
link
---
css/styles.css | 47 ++++++++++++++++++++++++++++++++++++++++++++---
index.html | 17 ++++++++++++++++-
2 files changed, 60 insertions(+), 4 deletions(-)
diff --git a/css/styles.css b/css/styles.css
index 19756e3..d4461bc 100644
--- a/css/styles.css
+++ b/css/styles.css
@@ -896,18 +896,59 @@ body[data-lang="en"] .hide-de { display: none !important; }
}
/* Locked image nach Unsere Themen — nur sichtbar wenn nicht eingeloggt */
-.about-locked-img {
+.about-locked-wrap {
+ position: relative;
display: block;
width: 100%;
max-width: 800px;
height: auto;
margin: 32px auto 0;
border-radius: 16px;
- box-shadow: 0 4px 20px rgba(0,0,0,0.08);
+ overflow: hidden;
}
-[data-loggedIn="true"] .about-locked-img {
+[data-loggedIn="true"] .about-locked-wrap {
display: none;
}
+.about-locked-img {
+ display: block;
+ width: 100%;
+ height: auto;
+ border-radius: 16px;
+}
+.about-locked-blur {
+ position: absolute;
+ inset: 0;
+ border-radius: 16px;
+ backdrop-filter: blur(13px);
+ -webkit-backdrop-filter: blur(13px);
+ background: rgba(255,255,255,0.15);
+}
+.about-locked-overlay {
+ position: absolute;
+ inset: 0;
+ border-radius: 16px;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ gap: 12px;
+ padding: 24px;
+}
+.about-locked-icon { font-size: 2.5rem; }
+.about-locked-text {
+ font-size: 1rem;
+ color: #fff;
+ text-align: center;
+ line-height: 1.5;
+ font-weight: 600;
+ text-shadow: 0 2px 8px rgba(0,0,0,0.3);
+}
+.about-locked-btn {
+ display: inline-flex !important;
+ align-items: center;
+ gap: 8px;
+ margin-top: 4px;
+}
/* ========================================
SEARCH
diff --git a/index.html b/index.html
index 312523a..1a88d53 100644
--- a/index.html
+++ b/index.html
@@ -349,7 +349,22 @@
-
+
+

+
+
+