Ajout de fonctions

This commit is contained in:
SamuWrob
2020-12-17 17:38:11 +01:00
parent 3a0d29816f
commit 1ec96163ab
29 changed files with 2048 additions and 470 deletions

40
front-src/style.css Normal file
View File

@ -0,0 +1,40 @@
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
}