playing card

by greg gorlen

HTML

<div class="card">
  <div class="text-top">
    K<br>&clubs;
  </div>
  <div class="text-bottom">
    K<br>&clubs;
  </div>
  <div class="card-back">
  </div>
</div>

<!-- <div style="font-size: 20em;">🂻</div> -->

CSS

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  position: relative;
  transform: translateY(35%) rotatex(55deg) rotateZ(45deg);
  height: 200px;
  width: 130px;
  border-radius: 10px;
  border: 2px solid #222;
  box-shadow: 2px 2px 0px #888;
}

.card .text-top,
.card .text-bottom {
  position: absolute;
  padding: 10px;
  font-size: 23px;
}

.card .text-bottom {
  transform: translate(86px, 124px) rotate(180deg);
}

.card .card-back {
  display: none;
}