Private
Public Access
1
0

add music, better sync, particles
All checks were successful
Dynamic Branch Deploy / build-and-deploy (push) Successful in 2m18s

This commit is contained in:
Sebastian Unterschütz
2025-11-29 23:37:57 +01:00
parent 5ce097bbb7
commit 669c783a06
43 changed files with 3001 additions and 878 deletions

View File

@@ -362,4 +362,32 @@ input {
@media screen and (orientation: portrait) {
#rotate-overlay { display: flex; }
#game-container { display: none !important; }
}
/* ... bestehende Styles ... */
#mute-btn {
position: fixed;
top: 10px;
left: 10px;
z-index: 100; /* Über allem */
background: rgba(0, 0, 0, 0.5);
border: 2px solid #555;
color: white;
font-size: 20px;
width: 40px;
height: 40px;
border-radius: 50%;
cursor: pointer;
padding: 0;
margin: 0; /* Override default button margin */
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
#mute-btn:hover {
background: rgba(255, 255, 255, 0.2);
border-color: white;
}