This commit is contained in:
cay 2026-04-10 09:49:15 +01:00
parent f5e7e2443a
commit 3e1e297c89

View File

@ -99,7 +99,7 @@ body {
padding: 0;
background: #0a0603;
overflow: hidden;
width: 100%; /* nicht 100vw Firefox zieht Scrollbar-Breite ab */
width: 100%; /* nicht 100vw Firefox zieht Scrollbar-Breite ab */
height: 100%;
display: flex;
align-items: center;
@ -113,7 +113,7 @@ body {
/* Map auf max. 85% Viewport-Breite und 82% Viewport-Höhe begrenzen
Chat (links unten) und Quickmenu (unten) verdecken weniger */
width: min(2037px, 85vw);
width: min(2037px, 85vw);
height: min(1018px, 82vh);
aspect-ratio: 2037 / 1018;
@ -127,7 +127,7 @@ body {
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-fit: contain;
}
.map-overlay {
@ -144,7 +144,9 @@ body {
stroke: transparent;
stroke-width: 3;
cursor: pointer;
transition: fill 0.25s, stroke 0.25s;
transition:
fill 0.25s,
stroke 0.25s;
will-change: fill, stroke;
}
@ -234,9 +236,15 @@ body {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6);
}
.global-chat { color: #e6c48a; }
.guild-chat { color: #6ed37c; }
.private-chat { color: #7ec8ff; }
.global-chat {
color: #e6c48a;
}
.guild-chat {
color: #6ed37c;
}
.private-chat {
color: #7ec8ff;
}
/* ── Online-User-Liste ──────────────────────────── */