Испытание:первая раскладка

Расставил по местам фоны но смещение влево не дает решить задачу.
Как исправить? Подскажите.
html,
body {
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
}

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

}

.cards {
width: 500px;

}

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

li:nth-of-type(-n+3),li:nth-of-type(n+5) {
margin-left: -15px;
}

li:nth-of-type(-n+3),li:nth-of-type(n+5){
width: 36px;
height: 54px;
}

li:nth-of-type(4) {
margin-right: 30px;
margin-left: 15px;
}

li.diamond:not(.seven):not(.jack):not(.king):not(.nine){
background-color: #0099ff;
}

.seven:not(.club){
background-color: #ff3300;
}

ul:nth-of-type(4)
li.heart:not(.queen),
li.diamond:not(.nine):not(.king):not(.seven),
li.spade:not(.nine):not(.seven):not(.ten):not(.king):not(.queen):not(.jack):not(.six):not(.eight)
{
background-color: #339933;
}

Это ужасный селектор.
Смещаться влево должны все карты кроме первой и четвертой в каждом ряду.

пойду посплю. может во сне придет решение)

1 лайк

Ineska победа. Поспав я увидел во сне решение. И понял свою ошибку.
Я сдвигал влево первый ряд и не упрощал код.
Вот код
html,
body {
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
}

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

.cards {
width: 500px;
}

.cards li::before {
font-family: “Courier”, monospace;
}
li:not(:first-of-type){
margin-left: -15px;
}

li:not(:nth-of-type(4)){
width: 36px;
height: 54px;
}

li:nth-of-type(4){
margin-right: 30px;
margin-left: 15px;
}

li.diamond:not(:nth-of-type(2n)) {
background-color: #0099ff;
}

.seven:not(.club){
background-color: #ff3300;
}

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