Селекторы, часть 2 / Испытание: псевдоэлементы [19/20] Критика

html,
body {
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
line-height: 30px;
}

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

.two-cards {
width: 350px;
height: 250px;
padding: 10px;
text-align: center;

}

.two-cards div {
position: relative;
display: inline-block;
width: 120px;
height: 180px;
margin: 0 10px;
margin-top: 30px;
vertical-align: middle;
background-color: white;
border-radius: 5px;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.8);
background-size: 50px auto;
}

/* Ширина иконок, не изменяйте */
.two-cards div::before,
.two-cards div::after {
width: 20px;
background-size: 25px auto;
font-size: 25px;
font-weight: bold;
padding-bottom: 20px;
position: absolute;
}

/* Поворот нижней иконки
Используются следующие цвета текста: red и black.
Все размеры шрифта и фоновых изображений, координаты указаны в пикселях и кратны 5.
Адреса фоновых изображений: /assets/course57/heart.svg и /assets/course57/spade.svg.
Размер фоновых изображений вам нужно задать самостоятельно.*/
.two-cards div::after {
transform: rotate(180deg);
bottom: 5px;
right: 5px;
}
.two-cards div::before {
top: 5px;
left: 5px;
}
.ace-heart {
background: url("/assets/course57/heart.svg") no-repeat 50% 50%;
}
.ace-heart::before {
content: “A”;
color: red;
background: url("/assets/course57/heart.svg") no-repeat 50% 100%;

}
.ace-heart::after {
content: “A”;
color: red;
background: url("/assets/course57/heart.svg") no-repeat 50% 100%;
}

.two-spade {
background: url("/assets/course57/spade.svg") no-repeat 50% 50%;
}
.two-spade::before {
content: “2”;
color: black;
background: url("/assets/course57/spade.svg") no-repeat 50% 100%;

}
.two-spade::after {
content: “2”;
color: black;
background: url("/assets/course57/spade.svg") no-repeat 50% 100%;

}

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

Типо того:

html,
body {
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
line-height: 30px;
}

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

.two-cards {
width: 350px;
height: 250px;
padding: 10px;
text-align: center;

}

.two-cards div {
position: relative;
display: inline-block;
width: 120px;
height: 180px;
margin: 0 10px;
margin-top: 30px;
vertical-align: middle;
background-color: white;
border-radius: 5px;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.8);
background-size: 50px auto;
}

/* Ширина иконок, не изменяйте */
.two-cards div::before,
.two-cards div::after {
width: 20px;
background-size: 25px auto;
font-size: 25px;
font-weight: bold;
padding-bottom: 20px;
position: absolute;
}

/* Поворот нижней иконки */
.two-cards div::after {
transform: rotate(180deg);
bottom: 5px;
right: 5px;
}
.two-cards div::before {
top: 5px;
left: 5px;
}
.ace-heart {
background: url("/assets/course57/heart.svg") no-repeat 50% 50%;
}
.two-spade {
background: url("/assets/course57/spade.svg") no-repeat 50% 50%;
}
.ace-heart::after, .ace-heart::before {
content: “A”;
color: red;
background: url("/assets/course57/heart.svg") no-repeat 50% 100%;
}
.two-spade::before, .two-spade::after {
content: “2”;
color: black;
background: url("/assets/course57/spade.svg") no-repeat 50% 100%;
}

Не о чем нам не сказало и мы туда нарисовали свой код.