JSFiddle - React, Tailwind, and code Playground

HTML

<button class="btn btn-wide">Load more</button>

CSS

.btn{
    background-image: 
        url(http://lorempixel.com/output/abstract-q-c-32-32-2.jpg),
        linear-gradient(to bottom,  rgba(0,166,255,1) 0%,rgba(0,166,255,1) 50%,rgba(2,154,236,1) 53%,rgba(2,154,236,1) 100%); /* W3C */
    background-repeat:no-repeat;
    border:0px;
    color:white;
    font-family: HelveticaNarrow;
    font-weight: bold;
    font-size: 12pt;
    text-transform: uppercase;
    cursor: pointer;
    background-position:50% 50%;
}

.btn-wide{
    width:728px;
    height:45px;

}