Minimalist Box Elements

by sammy

HTML

<div>
    Disrupt Terry Richardson beard, butcher biodiesel letterpress farm-to-table post-ironic cornhole master cleanse jean shorts 8-bit mumblecore. Mlkshk banjo YOLO, cray tote bag iPhone before they sold out fanny pack DIY Carles.
</div>

<div>
    Hi there
</div>

CSS

body {
    font-family: Helvetica Neue, Helvetica, Arial;
    font-size: 13px;
}

div {
    margin: 10px;
    background-color: #f6f6f6;
    background-image: -webkit-radial-gradient(38% 38%, 62% 62%, white, #f6f6f6);
    width: 300px;
    height: 200px;
    padding: 20px;
    box-sizing: border-box;
}