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,
.ace-heart::after,
.ace-heart::before {
background-image:url("/assets/course57/heart.svg");
}
.two-spade,
.two-spade::after,
.two-spade::before {
background-image:url("/assets/course57/spade.svg");
}
.ace-heart,
.two-spade {
background-repeat:no-repeat;
background-position:50% 50%;
background-size:50px;
}
.ace-heart::before,
.ace-heart::after {
color:red;
content:“A”
}
.two-spade::after,
.two-spade::before {
content:“2”;
}
.ace-heart::before,
.ace-heart::after,
.two-spade::after,
.two-spade::before {
padding-bottom:30px;
font-size:25px;
font-weight:bold;
position:absolute;
background-size:25px;
background-repeat:no-repeat;
background-position:50% 25px;
}
.ace-heart::before,
.two-spade::before{
top:5px;
left:5px
}
.ace-heart::after,
.two-spade::after{
bottom:5px;
right:5px;
}
Максимально сложил вместе повторяющиеся элементы, есть ли в этом смысл, потому что в итоге код стал на 3-4 строчки длиннее?