chore: Repository-Struktur bereinigt - Dateien aus dev/ in das Hauptverzeichnis verschoben

This commit is contained in:
2026-06-07 13:00:16 +02:00
parent 276e7570e5
commit 87f4d935c4
82 changed files with 0 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
/*
* Beinhaltet das absolute Grundgerüst der Seite.
* Reset-Regeln uns die Positionierung der Haupt-Container (Z-Index Ebenen).
*/
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
background-color: var(--color-bg-page);
font-family: var(--font-main);
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
position: fixed;
overscroll-behavior: none;}
#game-wrapper {
position: relative;
width: 100%;
height: 100%;
}
#pixi-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}
#ui-layer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10;
pointer-events: none;
}