69 lines
755 B
CSS
69 lines
755 B
CSS
html,
|
|
body,
|
|
canvas,
|
|
#menuBox {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
@media (max-width: 1000px) {
|
|
html {
|
|
font-size: 0.6rem;
|
|
}
|
|
}
|
|
|
|
* {
|
|
border: 0;
|
|
margin: 0;
|
|
text-align: center;
|
|
color: white;
|
|
}
|
|
|
|
h1,
|
|
p,
|
|
button {
|
|
font: 400 3rem "Raleway", cursive;
|
|
}
|
|
|
|
canvas,
|
|
button {
|
|
cursor: crosshair;
|
|
background-color: #a5402d;
|
|
}
|
|
|
|
p,
|
|
button {
|
|
font-size: 1.5rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
#menuBox {
|
|
position: absolute;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.box,
|
|
button {
|
|
width: 33%;
|
|
border-radius: 32px;
|
|
}
|
|
|
|
.box {
|
|
min-width: 250px;
|
|
padding: 2rem;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
button {
|
|
width: 60%;
|
|
padding: 1vmin;
|
|
cursor: pointer;
|
|
outline: none;
|
|
}
|
|
|
|
#endText {
|
|
display: none;
|
|
}
|