JSFiddle - React, Tailwind, and code Playground

by jessikwa

HTML

<div class="cams_action_button">Logout</div>

CSS

.cams_action_button
{
    color: #FFFFFF;
    text-align: center;
    line-height: normal;
    font-family: arial;
    cursor: pointer;
    text-decoration: none;
    padding: 4px 12px;
    display: inline-block;
    webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);

    -webkit-box-shadow: #8b8b8b 1px 1px 2px;
    -moz-box-shadow: #8b8b8b 1px 1px 2px;
    box-shadow: #8b8b8b 1px 1px 2px;
    
    font-size: 10px;
    border: 1px solid #587da0;
    background-color: #5e82a4;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#5e82a4), to(#27547d));
    background-image: -webkit-linear-gradient(top, #5e82a4, #27547d);
    background-image: -moz-linear-gradient(top, #5e82a4, #27547d);
    background-image: -ms-linear-gradient(top, #5e82a4, #27547d);
    background-image: -o-linear-gradient(top, #5e82a4, #27547d);
    background-image: linear-gradient(to bottom, #5e82a4, #27547d);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#5e82a4, endColorstr=#27547d);
}