Files
arkanoid/src/style.css
T
Ilia Mashkov a11ab8cd5d
Build and push / build (push) Skipped
Build and push / build (pull_request) Successful in 41s
feat: Добавлено сообщение об окончании игры и кнопка перезагрузки
2026-07-20 10:22:03 +03:00

42 lines
628 B
CSS

@import "./reset.css";
body {
min-height: 100vh;
}
canvas {
width: 100vw;
height: 100vh;
display: block;
object-fit: contain;
}
.end-screen {
position: fixed;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1rem;
background: rgba(0, 0, 0, 0.6);
color: #fff;
font-size: 3rem;
font-family: sans-serif;
font-weight: 700;
}
.end-screen button {
color: #ffffff;
font-size: 1.5rem;
font-family: sans-serif;
padding: 0.5rem 1.5rem;
cursor: pointer;
transition: all 0.2s ease-out;
}
.end-screen button:hover {
color: #ffffff88;
}