20/20 Прошу оценить код!

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(:nth-of-type(1)){
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-child(odd):not(:nth-of-type(3)):not(:nth-of-type(7)):not(:nth-of-type(11)) {
background-color: #ffcc33;
}

li:nth-child(even):not(:nth-child(4n)) {
background-color: #0099ff;
}

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

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

ul:nth-of-type(1) li:nth-child(even){
background-color: #996666;
}

Пользуясь случаем,хотелось и свой код продемонстрировать.
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;
}

ul::before {
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;
}

ul:not(:first-of-type) li:nth-of-type(4n-2){
background-color: #0099ff;
}

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

ul:nth-of-type(3) .ace.spade+li {
background-color: #339933;
}

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

Я тоже добавлю:

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; /*карты в первом ряду не окрашиваются в голубой, потому что цвет для четных карт переопределен последним правилом */
}

.cards:nth-of-type(even) li:nth-of-type(4n) {
background-color: #ff3300;
}

.cards:nth-of-type(3) li:nth-of-type(3n+8) {
background-color: #339933;
}

.cards:first-of-type li:nth-of-type(even) {
background-color: #996666;
}

Написал код точно так же, за исключением

ul:nth-of-type(3) .six, .queen {
background-color: #339933;
}

.cards li:not(:first-child) {
margin-left: -20px;
}
ul::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;
}

.cards:nth-of-type(even) li:nth-of-type(4n) {
background-color: #ff3300;
}

.heart.six,
.heart.queen {
background-color: #339933;
}

.cards:first-of-type li:nth-of-type(even) {
background-color: #996666;
}

простите. при выполнении задания появилось окошко (поздравили с меткостью)) с еще одним заданием . а где его можно найти? или что это было?

Достижения можно посмотреть у себя в кабинете.

1 лайк
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-child) {
margin-left: -20px;
}

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

li:nth-child(4n-3) {
background-color: #ffcc33;
}

li:nth-child(4n-2) {
background-color: #0099ff;
}

ul:nth-child(odd) li:nth-child(4n) {
background-color: #ff3300;
}

ul:nth-child(4) li:nth-child(3n+8) {
background-color: #339933;
}

.cards:first-of-type li:nth-child(even) {
background-color: #996666;
}

1 лайк