JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
	<div class="wrapper-top">
    	<div>
            <!--...-->
        </div>
        <p class="title center">LoLNode</p>
    </div>

CSS

html, body {height:100%;}
.wrapper-top {
	min-height:100%;
	overflow:auto;
	background: -webkit-linear-gradient(#3498db, #2980b9);
	background: -o-linear-gradient(#3498db, #2980b9);
	background: -moz-linear-gradient(#3498db, #2980b9);
	background: linear-gradient(#3498db, #2980b9);
	/*background-image:url(./assets/bg_1.jpg);
	background-position:bottom;
	background-repeat:no-repeat;
	background-size:cover;*/
}
	.wrapper-top div:first-child {
		padding:5px;
		background:url(./assets/horizontal_line.png) bottom repeat-x;
		z-index:100;
	}
	 	.wrapper-top div:first-child ul {
			width:50%;
			overflow:auto;
			margin:auto auto;
			list-style-type:none;
		}
			.wrapper-top div:first-child ul li {
				overflow:auto;
				display:inline-block;
				color:#FFF;
				text-shadow:0px 1px 1px #000;
			}
		.wrapper-top p.title {
			font-size:60px;
			font-family:"Alegrey Thin", Helvetica, sans-serif;
			color:#FFF;
			text-shadow:0px 2px 1px #000;
			text-align:center;
			
		}
		.wrapper-top p.title.center {
			width:220px;
			height:60px;
			position:absolute;
			top:0;bottom:0;
			left:0;right:0;
			margin:auto auto;	
		}

JavaScript

$(document).ready(function() {
	$("p.title.center").click(function() {
		$("p.title.center").removeClass("center");
	});
});