JSFiddle - React, Tailwind, and code Playground

HTML

<body class="gwd-body">
    <div class="leftbar">
        <img src="http://goo.gl/kBrNqn">
        <nav id="navMenu">
            <ul id="navList">
                <li>HOME</li>
                <li>People</li>
                <li>Places</li>
                <li>Things</li>
                <li>BLOG</li>
                <br/>
                <li>Contact</li>
            </ul>
        </nav>
    </div>
</body>

CSS

html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
}
body {
    background-color: transparent;
}
ul {
    list-style-type: none;
}
.leftbar {
    position: fixed;
    width: 200px;
}
#navMenu {
    margin-top: 30px;
    border: 1px solid blue;
}
#navList {
    text-align:center;
    border: 1px solid green;
}
#navList li {
    border: 1px dashed red;
}