Wondering how anyone would suggest rebuilding this example into a more workable version, that could be used as an interactive section on the web.
Created this working example quickly using CSS.
HTML
<div class="wrapper">
<div class="box a"></div>
<div class="box b"></div>
<div class="box c"></div>
<div class="box d"></div>
<div class="box e"></div>
<div class="box f"></div>
<div class="box a"></div>
<div class="box b"></div>
<div class="box c"></div>
<div class="box d"></div>
<div class="box e"></div>
<div class="box f"></div>
</div>
CSS
.wrapper {
overflow: hidden;
width: 100vw;
display: grid;
grid-template-columns: 20px 20px 20px 20px 20px 20px 20px 20px 20px 20px 20px 20px;
grid-gap: 0px;
background-color: #fff;
color: #444;
}
.box {
background-color: #fff;
color: #fff;
border: 0.001em solid #efefef;
border-radius: 0px;
padding: 0px;
height:1 7px;
transition: all 1s ease-out;
transition-delay: 0.2s;
}
.box:hover {
background-color: #FF5400;
border: 0.001em solid #FF5400;
transition: all 0.1s ease-out;
}
.box.d:hover {
background-color: #2BD1F8 !important;
border: 0.001em solid #2BD1F8;
transition: all 0.1s ease-out;
}