38 lines
438 B
CSS
38 lines
438 B
CSS
html, body {
|
|
border: 2px solid blue;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#canvas {
|
|
width: 80%;
|
|
height: 80%;
|
|
|
|
border: 2px solid green;
|
|
|
|
display:flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
#title {
|
|
border: 2px solid red;
|
|
margin: 0;
|
|
|
|
text-align: center;
|
|
}
|
|
|
|
#powerButton {
|
|
border: 2px solid blue;
|
|
|
|
height: 60%;
|
|
}
|
|
|