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

Оцените,пожалуйста,код

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);
}

/* Ширина иконок, не изменяйте */
.two-cards div::before,
.two-cards div::after {
width: 20px;
}

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

.ace-heart::before {
content: “A”;
position: absolute;
left: 5px;
top: 5px;
color: red;
font-size: 25px;
font-weight: bold;
background-image: url("/assets/course57/heart.svg");
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: 25px auto;
padding-bottom: 45px;
}

.ace-heart::after {
content: “A”;
position: absolute;
right: 5px;
bottom: 5px;
color: red;
font-size: 25px;
font-weight: bold;
background-image: url("/assets/course57/heart.svg");
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: 25px auto;
padding-bottom: 45px;
}

.ace-heart {
background-image: url("/assets/course57/heart.svg");
background-repeat: no-repeat;
background-size: 50px auto;
background-position: 50% 50%;
}

.two-spade::before {
content: “2”;
position: absolute;
left: 5px;
top: 5px;
color: black;
font-size: 25px;
font-weight: bold;
background-image: url("/assets/course57/spade.svg");
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: 25px auto;
padding-bottom: 45px;
}

.two-spade::after {
content: “2”;
position: absolute;
right: 5px;
bottom: 5px;
color: black;
font-size: 25px;
font-weight: bold;
background-image: url("/assets/course57/spade.svg");
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: 25px auto;
padding-bottom: 45px;
}

.two-spade {
background-image: url("/assets/course57/spade.svg");
background-repeat: no-repeat;
background-size: 50px auto;
background-position: 50% 50%;
}

Кроме как схожие свойства погруппировать, чтобы уменьшить количество строк, и убрать “auto” на оси y у background-size - у меня лично никаких пожеланий больше не будет. )

1 лайк