Селекторы, часть 2 / Испытание: псевдоэлементы [19/20] 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);
}

.ace-heart::before, .two-spade::before{
position: absolute;
left: 5px;
top: 5px;
padding-bottom: 45px;
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: 25px auto;
}
.ace-heart::after, .two-spade::after{
position: absolute;
right: 5px;
bottom: 5px;
background-repeat: no-repeat;
background-position: 50% 50%;
padding-bottom: 45px;
background-size: 25px auto;
}
.ace-heart::before{
content: “A”;
color: red;
background-image: url(/assets/course57/heart.svg);
}
.ace-heart::after{
content: “A”;
color: red;
background-image: url(/assets/course57/heart.svg);
}
.two-spade::before{
content: “2”;
color: black;
background-image: url(/assets/course57/spade.svg);
}
.two-spade::after{
content: “2”;
color: black;
background-image: url(/assets/course57/spade.svg);
}
.two-cards div{
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: 50px;
}
.ace-heart{
background-image: url(/assets/course57/heart.svg);
}
.two-spade{
background-image: url(/assets/course57/spade.svg);
}
/* Ширина иконок, не изменяйте */
.two-cards div::before,
.two-cards div::after {
width: 20px;
font-weight: bold;
font-size: 25px;
}

/* Поворот нижней иконки */
.two-cards div::after {
transform: rotate(180deg);
}

1 лайк

код получилось уж очень длинным - можно прилично подсократить , объединив одинаковые правила для разных селекторов. Например, используются всего две картинки, а правило background-image прописано целых шесть раз.

Шрифт не оформлен в до и после