43 lines
776 B
CSS
43 lines
776 B
CSS
/*
|
|
* 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;
|
|
}
|