JSFiddle - React, Tailwind, and code Playground

HTML

<div class="adp__planets">
    <div class="current">
        <div class="block">Block content</div>
    </div>
	<div class="list">
		<div class="wrapper">
			<div class="container">
				<div class="block">Block content</div>
				<div class="block">Block content</div>
				<div class="block">Block content</div>
				<div class="block">Block content</div>
				</div>
			</div>
		</div>
	</div>
</div>

CSS

/*
Sprite URL: http://storage1.static.itmages.com/i/15/0310/h_1425999094_5877862_6f2862425d.png
*/
*{
    font: 10pt Arial, Tahoma;
    color: #fff;
    padding: 0;
    margin: 0;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body{
    background: #a0a0a0;
    padding: 20px;
}

.adp__planets{
    background: url('http://storage1.static.itmages.com/i/15/0310/h_1425999094_5877862_6f2862425d.png') no-repeat 0 0;
	position: absolute;
	top: 0;
	left: 3px;
	height: 88px;
	width: 204px;
	z-index: 5;
}

.adp__planets .current{
    padding: 20px 16px 17px 16px;
    position: relative;
    height: 88px;
    z-index: 3;
}

.adp__planets .block{
    color: #fff;
    cursor: pointer;
    display: block;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0;
    text-decoration: none;
}

.adp__planets .list{
    padding: 0 5px;
    margin-top: 15px;
    position: relative;
    width: 204px;
}
.adp__planets .wrapper{
    background: url('http://storage1.static.itmages.com/i/15/0310/h_1425999094_5877862_6f2862425d.png') repeat-y -204px 0;
    position: relative;
    z-index: 2;
}

.adp__planets .wrapper .container{
    background: rgba(0,0,0,.75);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 12px;
    min-height: 500px;
}

.adp__planets .block:hover, .adp__planets .block.active{
    background-color: rgba(0,0,0,.75);
}

.adp__planets .list::before, .adp__planets .list::after{
    background: transparent url('http://storage1.static.itmages.com/i/15/0310/h_1425999094_5877862_6f2862425d.png') no-repeat 0 0;
    display: block;
    content: " ";
    position: absolute;
    left: 5px;
    width: 204px;
    z-index: 1;
}

.adp__planets .list::before{
    background-position: 0 -196px;
    top: -21px;
    height: 24px;
}

.adp__planets .list::after{
    background-position: 0 -224px;
    bottom: -16px;
    height: 70px;
}