23 lines
357 B
CSS
23 lines
357 B
CSS
|
|
#container{
|
|
align-items: center;
|
|
justify-content: center;
|
|
display: flex;
|
|
}
|
|
|
|
.row{
|
|
|
|
}
|
|
|
|
.field{
|
|
width: 30px;
|
|
height: 30px;
|
|
text-align: center;
|
|
background-color:lightgray;
|
|
|
|
|
|
}
|
|
|
|
.letter-no{ background-color: rgb(105, 105, 105);}
|
|
.letter-wrong-position{ background-color: yellow;}
|
|
.letter-right-position{ background-color: lime;} |