connect4/style.css
2025-01-29 16:41:46 +01:00

24 lines
289 B
CSS

#table-container {
text-align: center;
}
table {
background-color: blue
}
td {
background-color:white;
width:5em;
height:5em;
border-radius: 100%;
border: solid 0.2em blue
}
.player1 {
background-color: red;
}
.player2 {
background-color: yellow;
}