JSFiddle - React, Tailwind, and code Playground

by derekstory

HTML

<body></body>

CSS

body, html {
    height: 100%;
}
body {
    font-size: 12px;
    font-family: Helvetica, arial, sans-serif;
    color: #828282;
    min-width: 850px;
    /*background-color: #D5D5FF; */
    /* #B06802; #FBCE8D; #F89E1C; #D5D5FF;*/
    background: url(http://upload.wikimedia.org/wikipedia/commons/thumb/2/26/YellowLabradorLooking_new.jpg/260px-YellowLabradorLooking_new.jpg) 0 0;
    background-size: auto 700px;
    background-repeat:no-rpeat;
    background-position: center;
    height: 100%;
}
@media (min-width: 900px) {
    body {
        background: url(http://upload.wikimedia.org/wikipedia/commons/thumb/2/26/YellowLabradorLooking_new.jpg/260px-YellowLabradorLooking_new.jpg) repeat 0 0;
        background-size: 100% 110%;
        background-repeat:no-repeat;
        background-attachment:fixed;
        background-position: center;
    }
}