24 lines
339 B
CSS
24 lines
339 B
CSS
body{
|
|
background-color: gainsboro;
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
body, button{
|
|
font-family: 'Comic Sans MS', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
}
|
|
|
|
.playfield{
|
|
max-width: fit-content;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.row{
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.cell{
|
|
margin: 5px;
|
|
} |