pages235/src/react/deathScreen.css
2023-09-27 22:41:51 +03:00

33 lines
524 B
CSS

.deathScreen-container {
position: fixed;
inset: 0;
background: rgba(255, 0, 0, 0.5);
z-index: 10;
}
.deathScreen {
position: fixed;
top: 20%;
left: 0;
right: 0;
display: flex;
flex-direction: column;
align-items: center;
}
.deathScreen-title {
color: white;
margin-bottom: 10px;
}
.deathScreen-reason {
color: white;
margin-bottom: 20px;
font-weight: normal;
}
.deathScreen-buttons-grouped {
display: flex;
flex-direction: column;
gap: 5px;
}