JSFiddle - React, Tailwind, and code Playground

by Todd Squitieri

HTML

<title>THIS IS GOING TO BE THE TITLE!!</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/pages.css">
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro' rel='stylesheet' type='text/css'>
</head>

<body>
<div class="wrapper-head">
	<header class="main-header">
		<h1>LOGO</h1>

		<!--THIS IS WHERE YOUR LINK BUTTONS ARE-->


				<div class="main-nav">
					<a href="#">Link 1</a>
					<a href="#">Link 1</a>
					<a href="#">Link 1</a>
					<a href="#">Link 1</a>
				</div>

	</header>
</div>


<!--MAIN CONTENT HERE-->

<div class="mainwrapper">
	<div class="main-col">
		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
		tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
		quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
		consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
		cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
		proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
	</div>
</div>



<!--YOUR FOOTER GOES HERE -->


	<footer>
		<p>This website is copyrighted to Todd Squitieri 2014</p>


	</footer>







</body>
</html>

CSS

/*general styles for the page */

* {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}



body { 
	background: #292F3F;
	margin: 0;

}


.wrapper-head {
	margin: auto;
	width: 100%;
	background: #000000;
	padding: 10px;
	min-height: 100px;
}

.mainwrapper{
	margin: auto;
	width: 100%;
	font-family: 'Source Sans Pro', sans-serif;
	color: #CAD7B2;
	background: #6F86B8;
	padding: 10px;
	float: right;
}

.main-col {
	width: 100%;
	padding: 10px;
	margin: 0;
}

.main-header {
	color: #A4E167;
	padding: 10px;
	width: 100%;
}

.main-nav a {
	text-decoration: none;
	display: block;
	padding: 10px;
	background: tomato;
	margin: 10px;
	border-radius: 5%;
	color: white;

}


footer {
	background: #000000;
	font-family: 'Source Sans Pro', sans-serif;
	color: #CAD7B2;
	padding: 10px;
	min-height: 120px;
	width: 100%;
	float: right;
	padding: 10px;
	margin: auto;
}


@media screen and (max-width: 478px){
	.main-nav a {
		max-width: 150px;
	}

	.main-col {
		max-width: 150px;
	}

	.main-wrapper {
		max-width: 160px;
		text-align: center;
		padding: 10px;

	}

}


@media screen and (max-width: 479px){
	.main-nav a {
		max-width: 300px;
	}
}

@media screen and (min-width: 922px){
	.main-nav a {
		max-width: 500px;
		display: inline;
		float: left; 
	}

	h1 {
		float: left;
	}
}