JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://raw.github.com/LeaVerou/prefixfree/master/prefixfree.min.js"></script>
<div id="container">
    Skills
    <div id="hover-flip">
        13 Years!
        <p>Adobe Photoshop</p>
    </div>
    <div id="hover-flip2">
        5 Years!
        45 Days.
        <p>Autodesk Maya</p>
    </div>
</div>

CSS

body {
    background: #555;
    color: #555;
    font-family: 'helvetica neue', arial, sans-serif;
}

#container {
    background: -webkit-linear-gradient(top, #fff, #eee);
    font-weight: bold;
    margin: 100px;
    padding: 5px 0 80px 0px;
    position: relative;
    text-align: left;
    text-indent: 10px;
    width: 300px;
    line-height: 35px;
    -webkit-border-radius: 5px;
    
    -webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

#hover-flip {
    border-top: 1px solid #DDD;
    bottom: 1;
    color: #df3e7b;
    font-size: 14px;
    line-height: 40px;
    text-indent: 20px;
    position: absolute;
    width: 100%;
    
    box-shadow: inset 0 40px 5px rgba(0,0,0,0.2);
    -webkit-transition: all .2s ease-in-out;
    
    -webkit-perspective: 350;
    
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
}

#hover-flip:hover {
    background: #ddd;
    
    box-shadow: inset 0 20px 5px rgba(0,0,0,0.2);
    
    -webkit-transition: all .2s ease-in-out;
}

#hover-flip p {
    background: #fff;
    color: #009EE0;
    margin-top: -40px;
    
    position: relative;
    
    -webkit-font-smoothing: antialiased;
    -webkit-transform-origin: top;
    -webkit-transition: all .2s ease-in-out;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
}

#hover-flip:hover p {
    background: #bbb;
    color: transparent;
    
    -webkit-transform: rotateX(108deg);
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
}

#hover-flip2 {
    border-top: 1px solid #DDD;
    bottom: 0;
    color: #df3e7b;
    font-size: 14px;
    line-height: 40px;
    text-indent: 20px;
    position: absolute;
    width: 100%;
    
    box-shadow: inset 0 40px 5px rgba(0,0,0,0.2);
    -webkit-transition: all .2s ease-in-out;
    
    -webkit-perspective: 350;
    
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
}

#hover-flip:hover {
   ...