Puissance4/public/style.css
Florian Bouillon 3a0d29816f Ajout vérification de vitoire
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-12-17 16:37:08 +01:00

41 lines
434 B
CSS

body {
margin: 0;
padding: 0;
}
.tableContainer {
display: flex;
align-items: center;
justify-content: center;
height: 40rem;
}
table {
border: 2px solid;
}
tr {
border: 1px solid;
}
td {
border: 1px solid;
height: 10px;
width: 20px;
}
td[data-color="red"] {
background: red
}
td[data-color="yellow"] {
background: yellow
}
td[data-winner="true"] {
background: gold
}