From 430ed2f9c45743eb12b27a70c2922a257c0f2402 Mon Sep 17 00:00:00 2001 From: Cay Date: Sun, 15 Mar 2026 12:04:15 +0000 Subject: [PATCH] aeh --- public/css/building.css | 15 +++++++++++++++ public/js/buildings/schwarzmarkt.js | 8 +------- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/public/css/building.css b/public/css/building.css index d3ae2c1..556ee24 100644 --- a/public/css/building.css +++ b/public/css/building.css @@ -899,6 +899,21 @@ body { 0 0 18px #caa24b; } +/* Info Text über den Taschen */ + +.market-info-text { + font-family: "Cinzel", serif; + font-size: 13px; + color: #5c3b20; + text-align: center; + margin: 0 0 12px 0; + padding: 10px 16px; + border-bottom: 1px solid rgba(139, 106, 60, 0.4); + letter-spacing: 0.3px; + line-height: 1.6; + font-style: italic; +} + /* Placeholder Texte */ .market-placeholder { diff --git a/public/js/buildings/schwarzmarkt.js b/public/js/buildings/schwarzmarkt.js index d209a3f..a1b03e7 100644 --- a/public/js/buildings/schwarzmarkt.js +++ b/public/js/buildings/schwarzmarkt.js @@ -54,6 +54,7 @@ Geheimhandel
+

Erweitere deinen Taschenplatz indem du zusätzliche Taschen freischaltest

@@ -85,11 +86,6 @@ async function loadPages() { let html = ""; - html += ` -

Erweitere deine Taschenplätze

-
-`; - for (let i = 1; i <= data.maxPages; i++) { const price = data.prices.find((p) => p.page === i); @@ -121,8 +117,6 @@ async function loadPages() { } } - html += `
`; // slots container schließen - container.innerHTML = html; } catch (err) { console.error("Schwarzmarkt Fehler:", err);