JSFiddle - React, Tailwind, and code Playground

by tjerabek

HTML

<link href='http://fonts.googleapis.com/css?family=Averia+Libre' rel='stylesheet' type='text/css'>
<div class="paper">
    <div class="content">
            <h1>This is paper!</h1>
    </div>
</div>

CSS

body{
    padding: 80px;
    background: #f2f2f2;
}
.paper, .content{
    background: white;
    height: 250px;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
h1{
    font-family: 'Averia Libre', cursive;
    text-align: center;
    line-height: 250px;
    font-size: 400%;
    color: #686868;
}
.paper{
    padding-bottom: 2px;
}