JSFiddle - React, Tailwind, and code Playground
by genelocklin
HTML
<div class="container">
<div class="papers"></div>
</div>
CSS
* { margin: 0; padding: 0; }
body {
font-size: 100%;
background: #f1f2f3 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAAEhL4UpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADNJREFUeNpi2LlzJwdAADEAAStAADGCCCBmAggghu7ubh6QEBdAgDGDWMzMzDx37txhAgCX7whTp0PZIwAAAABJRU5ErkJggg==) 0 0 repeat
}
.container {
margin-left: 1%;
margin-right: 1%;
width: 98%;
float: left;
}
.papers {
background-color: white;
height: 350px;
width: 290px;
padding: 25px;
float: left;
box-shadow:
0px 1px 0 rgba(0, 0, 0, 0.100),
0px 3px 0 rgba(255, 255, 255, 1.0),
0px 4px 0 rgba(0, 0, 0, 0.125),
0px 6px 0 rgba(255, 255, 255, 1.0),
0px 7px 0 rgba(0, 0, 0, 0.150),
0px 9px 0 rgba(255, 255, 255, 1.0),
0px 10px 0 rgba(0, 0, 0, 0.175);
}