JSFiddle - React, Tailwind, and code Playground

by rodrigonery

HTML

<div class="rain">
  <div class="border start">
    <form>
        <label for="pass">Please enter your name</label>
        <input type="text"/>
      <input class="btn" type="reset" value="CANCEL"/>
      <input class="btn" type="submit" value="ACCEPT"/>
    </form>
  </div>
</div>

CSS

body{
        background: #000;
        color: #DDD;
        font-family: 'Helvetica', 'Lucida Grande', 'Arial', sans-serif;
      }
      .border,
      .rain{
        height: 170px;
        width: 320px;
      }
      /* Layout with mask */
      .rain{
         padding: 10px 12px 12px 10px;
         -moz-box-shadow: 10px 10px 10px rgba(0,0,0,1) inset, -9px -9px 8px rgba(0,0,0,1) inset;
         -webkit-box-shadow: 8px 8px 8px rgba(0,0,0,1) inset, -9px -9px 8px rgba(0,0,0,1) inset;
         box-shadow: 8px 8px 8px rgba(0,0,0,1) inset, -9px -9px 8px rgba(0,0,0,1) inset;
         margin: 100px auto;
      }
      /* Artifical "border" to clear border to bypass mask */
      .border{
        padding: 1px;
        -moz-border-radius: 5px;
          -webkit-border-radius: 5px;
        border-radius: 5px;
      }

      .border,
      .rain,
      .border.start,
      .rain.start{
        background-repeat: repeat-x, repeat-x, repeat-x, repeat-x;
        background-position: 0 0, 0 0, 0 0, 0 0;
        /* Blue-ish Green Fallback for Mozilla */
        background-image: -moz-linear-gradient(left, #09BA5E 0%, #00C7CE 15%, #3472CF 26%, #00C7CE 48%, #0CCF91 91%, #09BA5E 100%);
        /* Add "Highlight" Texture to the Animation */
        background-image: -webkit-gradient(linear, left top, right top, color-stop(1%,rgba(0,0,0,.3)), color-stop(23%,rgba(0,0,0,.1)), color-stop(40%,rgba(255,231,87,.1)), color-stop(61%,rgba(255,231,87,.2)), color-stop(70%,rgba(255,231,87,.1)), color-stop(80%,rgba(0,0,0,.1)), color-stop(100%,rgba(0,0,0,.25)));
        /* Starting Color */
        background-color: #39f;
        /* Just do something for IE-suck */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00BA1B', endColorstr='#00BA1B',GradientType=1 );
      }

      .border.end,
      .rain.end{
        -moz-transition-property: background-position;  
        -moz-transition-duration: 30s;
        -moz-transition-timing-function: linear;
       ...

JavaScript

$(function(){var a=$("form input");var b=$(".rain, .border");a.on("focus",function(){b.addClass("end").removeClass("unfocus start")});a.on("blur",function(){b.addClass("unfocus start").removeClass("end")});a.first().delay(800).queue(function(){$(this).focus()})})