не могу вставить пустые карты

не получается вставить пустые карты, пробовал и класс и список
html,
body {
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
}

body {
min-width: 550px;
min-height: 250px;
padding: 10px;
}

.cards {
position: relative;
width: 680px;
text-align: left;
}

.cards li {
width: 37px;
height: 55px;
}

.cards li::before {
font-family: “Courier”, monospace;
}

ul li:not(:first-of-type){
margin-left: -20px;
}

.cards::after {
content: “”;
position: absolute;
right: 0;
top: 0;
display: block;
width: 37px;
height: 55px;
border: 1px dashed #33bb33;
border-radius: 5px;
}

ul li:first-child,
ul li:last-child,
ul li:nth-child(5),
ul li:nth-last-of-type(5){
background-color: #ffcc33;
}

ul:not(:first-of-type) li:nth-child(2), li:nth-child(6),li:nth-child(10)
{
background-color: #0099ff;
}

ul:not(:nth-of-type(3)) li:nth-child(4n)
{
background-color: #ff3300;
}

ul:nth-of-type(3) li:nth-last-of-type(3),li:nth-last-of-type(6) {
background-color: #339933;
}

ul:first-of-type li:nth-child(2n) {
background-color: #996666;
}

Номер задания, пожалуйста, а лучше ссылку.

Каким образом у вас стало 680px, не знаю. Было так:
.cards {
position: relative;
width: 380px;
text-align: left;
}

я поменял, что бы поставить карты в один ряд

все спасибо