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="menu">
<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>
</div>
</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;
}
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;
}
html {
background: url(http://savepic.su/5108981.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body {
font: 12px/18px Verdana, tahoma, sans-serif;
line-height: 1;
}
.wrapper {
min-width: 1024px;
max-width: 2560px;
margin: 0 100px;
}
/* Header
-----------------------------------------------------------------------------*/
.header {
height: 250px;
padding: 50px 0 0 0;
position: relative;
}
.logo {
width: 190px;
height: 190px;
position: absolute;
}
.logo a {
display: block;
outline-style: none;
}
.menu {
width: auto;
height: 120px;
float: left;
margin: 30px 0 0 160px;
}
.phone {
height: 40px;
background: #231f20;
-webkit-border-top-right-radius: 20px;
-moz-border-radius-topright: 20px;
border-top-right-radius:...