JSFiddle - React, Tailwind, and code Playground
by Pamela Cook
HTML
<div class="categories" align="center">
<ol class="type">
<li><a href="https://www.lightbe.com">LightBe Corp</a></li>
<li class="cat-interest"><a href="https://www.3d2dgeometry.com/">3D2D Geometry</a></li>
</ol>
</div>
CSS
.categories ol.type {
margin-bottom: 20px;
text-align: center;
font-weight: bold;
}
.categories ol.type li {
display: inline-block;
padding-bottom: 30px;
}
.categories ol.type li a {
color: #000000;
padding: 10px 12px;
border: 1px solid #000000;
border-radius: 2px;
}
.categories ol.type li a {
background: #e1e10a;
}
.categories ol.type .cat-interest a {
background: #b3f2ff;
}
.categories ol.type li a.active,
ol.type li a:hover {
color: #ffffff;
border: 1px solid #cf5022;
background: #ff0000;
}