JSFiddle - React, Tailwind, and code Playground

by seevis

HTML

<div class="tpram">
  <div class="tematy">100 t.</div>
  <div class="posty">200 p.</div>
</div>

CSS

.tpram {
  width: 100px;
  height: 70px;
  background-color: black;
  color: white;
  padding: 2px;
  font-size: 14px;
  font-family: Calibri, sans-serif;
  font-weight: bold;

}

.tematy {
  width: 80px;
  background-color: #008787;
  padding: 4px;
  margin: 6px;
  color: #87006a;
  text-align: center;
  
}

.posty {
  width: 80px;
  background-color: #87006a;
  padding: 4px;
  margin: 6px;
  color: #008787;
  text-align: center;
}