JSFiddle - React, Tailwind, and code Playground

by Florence Maurice

HTML

<div class="button"></div>

CSS

body {
  background-color: #FEF1D8;
}
.button {
    background-color: #E9632F;
    background: -webkit-linear-gradient( hsl(17, 86%, 57%) 0%, hsl(17, 86%, 57%) 49%, hsl(17, 81%, 55%) 49%, hsl(17, 81%, 55%) 100%);
    background: linear-gradient( hsl(17, 86%, 57%) 0%, hsl(17, 86%, 57%) 49%, hsl(17, 81%, 55%) 49%, hsl(17, 81%, 55%) 100%);
    /* Wegen Bug im Android bei Bedarf 1px als Grad der Verschwommenheit angeben, sonst wird der Schatten nicht angezeigt */
    -webkit-box-shadow: 0 4px 0px hsl(17, 69%, 45%);  
    box-shadow: 0 4px 0px hsl(17, 69%, 45%);
    border-radius: 5px;
    height: 38px;
    width: 200px;
    margin: 15px;
    float: left;
}