Долго с пустой картой гадал, а остальное вроде хорошо получилось и компактно
html,
body {
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
}
body {
min-width: 550px;
min-height: 250px;
padding: 10px;
}
.cards {
position: relative;
width: 380px;
text-align: left;
}
.cards li {
width: 37px;
height: 55px;
}
.cards li::before {
font-family: “Courier”, monospace;
}
.cards 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;
}
.cards li:nth-child(4n+1) {
background-color: #ffcc33;
}
.cards:not(:first-of-type) li:nth-of-type(4n-2) {
background-color: #0099ff;
}
.cards:nth-of-type(even) li:nth-child(4n) {
background-color: #ff3300;
}
.cards:nth-last-of-type(2) .ace.spade+li {
background-color: #339933;
}
.cards:first-of-type li:nth-of-type(even) {
background-color: #996666;
}
Pavvel
2
Я тут вот так задал, без привязки к классам карт
ul:nth-last-of-type(2) li:nth-child(n+8):nth-child(3n+2)
{ background-color: #339933;}
имхо чем короче запись тем лучше )
1 лайк
.ace.spade~.heart {
background-color: #339933;
}
1 лайк
Boris
5
вот мой вариант
html,
body {
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
}
body {
min-width: 550px;
min-height: 250px;
padding: 10px;
}
.cards {
position: relative;
width: 380px;
text-align: left;
}
.cards li {
width: 37px;
height: 55px;
}
.cards li::before {
font-family: “Courier”, monospace;
}
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;
}
li:nth-of-type(4n-3) {
background-color: #ffcc33;
}
li:nth-of-type(4n-2) {
background-color: #0099ff;
}
ul:not(:nth-of-type(3n)) li:nth-of-type(4n) {
background-color: #ff3300;
}
ul:nth-last-of-type(2) .heart:nth-last-of-type(3n):not(:nth-of-type(2)) {
background-color: #339933;
}
ul:first-of-type li:nth-child(2n) {
background-color: #996666;
}