JSFiddle - React, Tailwind, and code Playground

by oti ext

HTML

<div class="box">:hover me!</div>

CSS

.box{
    border: 2px solid rgba(0,0,0, 0.4);
    border-radius: 6px;
    width: 150px;
    height: 150px;
    text-align: center;
    line-height: 150px;
    background-color: gold;
    box-shadow: 0 10px 10px -10px rgba(0,0,0, 0.7);
    transition: all 0.2s linear;
}

.box:hover{
    margin: -5px 0 0 -5px;
    width: 160px;
    height: 160px;
    line-height: 160px;
    box-shadow: 0 15px 25px -5px rgba(0,0,0, 0.3);
}