JSFiddle - React, Tailwind, and code Playground

by c_vilander

HTML

<div class="text"><h1>Loading</h1></div>

CSS

body {
background: -webkit-linear-gradient(bottom, deeppink, hotpink);
  background: linear-gradient(to bottom, deeppink, hotpink);
    font-family: Raleway,'Helvetica Neue',Helvetica,sans-serif;
}

h1 {
    display: inline;
    font-size: 36px;
    font-weight: 100;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: #fff;
    background: -webkit-linear-gradient(bottom, deeppink, hotpink);
  background: linear-gradient(to bottom, deeppink, hotpink);
}

.text {
    position: absolute;
    top: 50px;
    left: 50px;
}