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

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

    /*Туз-ЧЕРВА*/

.two-cards .ace-heart::before,
.two-cards .ace-heart::after {
content: “A”;
color: red;
font-size: 25px;
font-weight: bold;
background: url("/assets/course57/heart.svg") no-repeat 50% 100%;
background-size: 25px auto;

}

.two-cards .ace-heart::before {
position: absolute;
padding-bottom: 20px;
left: 5px;
top: 5px;
}

.two-cards .ace-heart::after {
position: absolute;
padding-bottom: 20px;
right: 5px;
bottom: 5px;

}

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

              /*Двойка-ПИКА*/

.two-cards .two-spade::before,
.two-cards .two-spade::after{
content: “2”;
color: black;
font-size: 25px;
font-weight: bold;
background: url("/assets/course57/spade.svg") no-repeat 50% 100%;
background-size: 25px auto;
}

.two-cards .two-spade::before {
position: absolute;
padding-bottom: 20px;
left: 5px;
top: 5px;
}

.two-cards .two-spade::after {
position: absolute;
padding-bottom: 20px;
right: 5px;
bottom: 5px;
}

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

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

Попробуйте проанализировать код другого пользователя, разница во времени в создании темы 20 минут. [19/20] Испытание: псевдоэлементы, 100%

1 лайк