JSFiddle - React, Tailwind, and code Playground

by sperske

HTML

<div>content
    <br />content
    <br />content
    <br />content</div>

CSS

@import url(http://fonts.googleapis.com/css?family=Press+Start+2P);
 html, body {
    background: url(http://upload.wikimedia.org/wikipedia/en/6/6d/Sonic1.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    image-rendering: -moz-crisp-edges;
    /* Firefox */
    image-rendering: -o-crisp-edges;
    /* Opera */
    image-rendering: -webkit-optimize-contrast;
    /* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    /* IE (non-standard property) */
}
div {
    font-family:'Press Start 2P', cursive;
    color: #fff;
    background-color:#000;
    opacity: 0.7;
}