JSFiddle - React, Tailwind, and code Playground

by c_vilander

HTML

<div class="button"><a href="#slide1">Slide One</a></div>

<div class="container">
    <h1 id="slide1">Test</h1>
</div>

CSS

body {
    background: #000;
	font-family: Raleway,'Helvetica Neue',Helvetica,sans-serif;
    font-weight: 200;
}

a {
    color: #fff;
    letter-spacing: 2px;
    text-decoration: none;
    line-height: 30px;
}

.button {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 120px;
    height: 30px;
    text-align: center;
    background: #393939;
    border-radius: 5px;
}

.container {
    position: absolute;
    top: 70px;
    left: 25px;
    width: 500px;
    height: 200px;
    border: 1px solid white;
}

#slide1 {
    position: relative;
    top: 0px;
    left: 0px;
    color: #fff;
}