JSFiddle - React, Tailwind, and code Playground

HTML

<div class="medium macbutton">
    <span>Header</span>
</div>
<div class="small macbutton">
    <span>small</span>
</div>
<div class="container macbutton">
    <span>content goes here</span>
</div>

CSS

body{
    font-family:Verdana;
    background-color:#E6E6E6;
    background:url("http://static1.grsites.com/images/glossymetal.jpg") repeat scroll left top transparent
}
.parent{
    width:100%;
    margin:auto;
    text-align:center;
}
.medium ,.container{
    height:100px;
    width:600px;
    padding:10px;
    margin:15px auto;

}
.container{
    height:900px;
    width:600px;
}
.small{
    height:20px;
    width:150px;
    margin:15px;
    padding:5px;
    margin:auto;
    float:left;
    background-color:orange !important;
}
.macbutton {
    border:1px solid #E6E6E6;
    border-radius:5px; 
    letter-spacing:2px;
    text-align:center;
    background-color:#fff;
    box-shadow:1px 0 0 #FAFAFA,
        2px -1px 0 #FAFAFA,
        4px -2px 0 #FAFAFA,
        6px -3px 0 #FAFAFA,
        8px -4px 0 #FAFAFA,
        10px -5px 0 #FAFAFA,
        5px 0 20px #000        ;
    cursor:pointer;
}
.macbutton span {
    text-shadow:1px 1px #fff,-1px -1px #A4A4A4;
    color:#BDBDBD;
}
.rightFloat {
    float:right;
}

JavaScript

x