29 lines
321 B
CSS
29 lines
321 B
CSS
body { margin: 0; }
|
|
|
|
.container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
}
|
|
|
|
table {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
button {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#scene {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.gumb {
|
|
width: 5rem;
|
|
}
|