JSFiddle - React, Tailwind, and code Playground

by adriia

HTML

<div class="elquesigui">
    Super Botó
</div>

CSS

.elquesigui {
    width:200px;
    height:100px;
    background:green;
    -webkit-transition: all 500ms ease-in;
    -moz-transition: all 500ms ease-in;
    -ms-transition: all 500ms ease-in;
    -o-transition: all 500ms ease-in;
    transition: all 500ms ease-in;
    opacity:0;
}

.elquesigui:hover {
    opacity:0.9;
    cursor:pointer;
}