Endscreen und Verlängerung der Schlange bei einem Score

This commit is contained in:
2025-04-25 17:44:32 +02:00
parent 7cafc07bf1
commit f450526375
9 changed files with 153 additions and 18 deletions

View File

@@ -47,4 +47,58 @@ img{
flex-direction: column;
align-items: center;
justify-content: space-evenly;
}
#endDivOverlay{
z-index: 2;
background-color: rgba(0, 0, 0, 0.7);
height: 100vh;
width: 100vw;
position: absolute;
top: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
}
#endDiv{
background-color: rgba(0, 0, 0, 0.5);
border-radius: 25px;
border: 5px solid white;
height: 60vh;
width: 40vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
}
#endDiv h1{
font-size: 60px;
}
#scoreEndDiv{
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
height: 150px;
}
#scoreEndDiv h3{
font-size: 30px;
}
#scoreEndDiv h2{
font-size: 40px;
font-weight: 900;
}
#reason{
color: rgb(197, 46, 46);
font-weight: 700;
}