JSFiddle - React, Tailwind, and code Playground

by adamschwartz

HTML

<h1>In a world...</h1>

CSS

@import url(http://fonts.googleapis.com/css?family=Open+Sans+Condensed:700);

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
}

body {
    font-family: "Open Sans Condensed", sans-serif;
    color: #fff;
    background: #000;
}

h1 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    font-size: 2.75em;
    height: 1.5em;
    text-transform: uppercase;
    font-weight: normal;
    text-align: center;
    text-rendering: optimizeLegibility;
}

h1 > span {
    padding-left: .04em;
}
}