JSFiddle - React, Tailwind, and code Playground
by juanojeda
HTML
<h1>How are you feeling?</h1>
<svg class="face">
</svg>
<span class="feels">Super Happy!</span>
<button>Submit</button>
CSS
@import url(http://fonts.googleapis.com/css?family=Pacifico);
body {
background: #0E4B5E;
text-align: center;
font-family: pacifico, helvetica, arial, sans-serif;
}
h1, .feels {
display: block;
font-weight: normal;
color: #A6BAC1;
}
h1 {
font-size: 75px;
}
.feels {
font-size: 50px;
}
button {
-webkit-appearance: none;
border: 0;
background: 0;
}