JSFiddle - React, Tailwind, and code Playground

by rus333

HTML

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8" />
	<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
	<title></title>
	<meta name="keywords" content="" />
	<meta name="description" content="" />
</head>

<body>

<div class="wrapper">

	<header class="header">
		<div class="logo">
			<a href="/"><img src="http://savepic.su/5098741.png"></a>
		</div>
		<div class="phone"></div>
		<menu class="top_nav">
			<li><a href="#">Главная</a></li>
			<li><a href="#">Оплата и доставка</a></li>
			<li><a href="#">Наши партнеры</a></li>
			<li><a href="#">Справочник</a></li>
			<li><a href="#">Документы</a></li>
			<li><a href="#">Контакты</a></li>
		</menu>
	</header><!-- .header-->

	<div class="middle">

		<div class="container">
			<main class="content">
				
			</main><!-- .content -->
		</div><!-- .container-->

		<aside class="left-sidebar">
			
		</aside><!-- .left-sidebar -->

	</div><!-- .middle-->

</div><!-- .wrapper -->

</body>
</html>

CSS

/* Eric Meyer's CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End of Eric Meyer's CSS Reset */

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
body {
	font: 12px/18px Verdana, arial, sans-serif;
	background: url(http://savepic.su/5108981.jpg) no-repeat;
	-moz-background-size: 100%; /* Firefox 3.6+ */
	-webkit-background-size: 100%; /* Safari 3.1+ и Chrome 4.0+ */
	-o-background-size: 100%; /* Opera 9.6+ */
	background-size: 100%; /* Современные браузеры */
}
.wrapper {
	width: 1024px;
	margin: 0 auto;
}
/* Header
-----------------------------------------------------------------------------*/
.header {
	height: 250px;
	position: relative;
}
.logo {
	width: 190px;
	height: 190px;
	float: left;
	position: absolute;
	top: 50px;
	left: 0;
	z-index: 999;
}
.logo a {
	display: block;
	outline-style: none;
}
.phone {
	width: 830px;
	height: 60px;
	background: #231f20;
	position: absolute;
	top: 70px;
	left: 150px;
	z-index: 0;
}
.top_nav {
	width:...