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;
  background-size: 50px; 
  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);
}
.two-cards div::before,
.two-cards div::after {
  padding-bottom:20px;
  font-size: 25px;
  font-weight: bold;
  position: absolute;
  background-size: 25px;
}
.two-cards div::before {
  top: 5px;
  left: 5px;
}
.two-cards div::after {
  bottom: 5px;
  right: 5px;
}
.ace-heart {
  background: url("heart.svg") no-repeat 50% 50%;
}
.ace-heart::before,
.ace-heart::after {
  content: "A";
  color: red;
  background: url("heart.svg") no-repeat 50% 100%;
}
.two-spade {
  background: url("spade.svg") no-repeat 50% 50%;
}
.two-spade::before,
.two-spade::after {
  content: "2";
  color: black; 
  background: url("spade.svg") no-repeat 50% 100%;
}

Старался сделать максимально коротко и лаконично, что можно исправить/улучшить?

У тебя .two-cards div::after 2 раза исользуется
Я тоже только прошел вот сравниваю то что у меня получилось,если еще найду отпишу
а твой код можно исправить так
.two-cards div::after {
transform: rotate(180deg);
bottom:5px;
right:5px;
}
UPD: Не глянул на дату)

1 лайк

Вот мой вариант.
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
{
background:url(‘heart.svg’);
}

.two-spade
{
background:url(‘spade.svg’);
}

.ace-heart,
.two-spade
{
background-size:50px;
background-repeat:no-repeat;
background-position:50% 50%;
}
div::before
{
top: 5px;
left: 5px;
padding-bottom: 20px;
}

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

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

.ace-heart::before,
.ace-heart::after
{
content:‘A’;
color:red;
background:url(‘heart.svg’) no-repeat 50% 100%;
}

.two-spade::before,
.two-spade::after
{
content:‘2’;
color:black;
background:url(‘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);
}

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

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

.ace-heart {
color: red;
font-size: 25px;
font-weight: bold;
background: url(“heart.svg”) no-repeat 50% 50%;
background-size: 50px;
}

.ace-heart::before {
content: “A”;
position: absolute;
top: 5px;
left: 5px;
height: 50px;
background: url(“heart.svg”) no-repeat 50% 100%;
background-size: 25px;
}

.ace-heart::after {
content: “A”;
position: absolute;
bottom: 5px;
right: 5px;
height: 50px;
background: url(“heart.svg”) no-repeat 50% 100%;
background-size: 25px;
}

.two-spade {
color: black;
font-size: 25px;
font-weight: bold;
background: url(“spade.svg”) no-repeat 50% 50%;
background-size: 50px;
}

.two-spade::before {
content: “2”;
position: absolute;
left: 5px;
top: 5px;
height: 50px;
background: url(“spade.svg”) no-repeat 50% 100%;
background-size: 25px;
}

.two-spade::after {
content: “2”;
position: absolute;
bottom: 5px;
right: 5px;
height: 50px;
background: url(“spade.svg”) no-repeat 50% 100%;
background-size: 25px;
}

Можно много сократить, общие значения в .twospade:: before, ::after вынести в один элемент, а отдельно задать только поворот, фон и позиционирование, так же и в .aceheart

Немного иначе сделал, много объединил, чтобы было по подобию, а в псевдоэлементах переопределялись только цвет и контент-номер. Дефолтные стили не менял, вообще не трогал их. Имхо удобнее других вариантов тем, что один раз достаточно поменять картинку и литеру карты, чтобы сделать новую карту.

зачитил
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);
}
div,
div::before,
div::after{
  background: url(heart.svg) no-repeat 50% 50%;
  background-size: 50px;
}
div:nth-of-type(2),
div:nth-of-type(2)::before,
div:nth-of-type(2)::after
{
  background-image: url(spade.svg);
  color: black;
  content: "2"
}
div::before,
div::after {
  content: "A";
  display: block;
  position: absolute;
  font-size: 25px;
  font-weight: bold;
  color: red;
  background-size: 25px;
  padding-bottom: 45px;
}
div::before {
  top: 5px;
  left: 5px;
}
div::after {
  bottom: 5px;
  right: 5px;
}
по красоте
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,
.two-spade,
.ace-heart::before,
.ace-heart::after,
.two-spade::before,
.two-spade::after{
  background: url('heart.svg') no-repeat 50% 50%;
  background-size: 50px;
  
}
.two-spade,
.two-spade::before,
.two-spade::after{
  background-image: url('spade.svg');
}
.ace-heart::before,
.ace-heart::after,
.two-spade::before,
.two-spade::after{
  content: "A";
  font-weight: bold;
  font-size: 25px;
  display: block;
  position: relative;
  left: 5px;
  top: 5px;
  background-size: 25px;
  padding-bottom: 45px;
  color: red;
}
.ace-heart::after,
.two-spade::after{
  left: 95px;
  top: 25px;
}
.two-spade::before,
.two-spade::after{
  content: "2";
  color: black;
}
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);
}
.two-cards div::before,
.two-cards div::after {
width: 20px;
}
.ace-heart::before,
.ace-heart::after{
content:“A”;
color: red;
position: absolute;
font-size: 25px;
font-weight: bold;
padding-bottom: 20px;
background: url(“heart.svg”) no-repeat 50% 100%;
background-size: 25px auto;
}
.ace-heart::before {
left: 5px;
top: 5px;
}
.ace-heart::after {
right: 5px;
bottom: 5px;
}

.two-spade::before,
.two-spade::after{
content:“2”;
color: black;
position: absolute;
font-size: 25px;
font-weight: bold;
padding-bottom: 20px;
background: url(“spade.svg”) no-repeat 50% 100%;
background-size: 25px auto;
}
.two-spade::before {
left: 5px;
top: 5px;
}
.two-spade::after {
right: 5px;
bottom: 5px;
}

.two-cards div::after {
transform: rotate(180deg);
}
.two-spade {
background: url(“spade.svg”) no-repeat 50% 50%;
background-size: 50px auto;

}
.ace-heart {
background: url(“heart.svg”) no-repeat 50% 50%;
background-size: 50px auto;
}