JSFiddle - React, Tailwind, and code Playground
by thirtydot
HTML
<div id="stats-container">
<a href="sectors/hydrogen" class="sector one-letter">H</a>
<div id="stats">
<span>EXP <a href="exp"><strong>2,100</strong></a></span>
<span>$ <a href="money"><strong>100</strong></a></span>
</div>
</div>
CSS
.sector:link,.sector:visited{
display: inline-block; margin: 10px 10px 15px 0px;
background-color: #053669; color: #fff;
}
.sector:hover{
text-decoration: none;color: #eee;background-color: #4288D1;
}
.one-letter{
width: 70px; height: 80px; padding-left: 10px;
font-size: 80px;line-height: 80px;font-size: 80px;line-height: 80px;
}
#stats-container{
height: 105px;
}
#stats{
width: 60px;
height: 105px;
display: inline-block;
vertical-align: top;
background-color:#999;
}
#stats span{
display: block;
}