JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> пробная вёрска </title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<div class="wraper">
<div class="header">
<div class="disin">
Blog Design
</div>
<div class='head_text' >
blog about web design
</div>
<div class="menu">
<menu>
<li><a href="#">home</a></li>
<li><a href="#">about me</a></li>
<li><a href="#">photos</a></li>
<li><a href="#">portfolio</a></li>
<li><a href="#">friends</a></li>
<li><a href="#">contacts</a></li>
</menu>
</div>
<div class="circle">
<img src="http://image.kz/img/ee/ee491697ba1631685e832224fdc7fc12.png" alt="name" />
</div>
</div>
<div class="content">
<div class="left_block">
<div class="block_cont">
<div class="floor"></div>
<div class="cont_text"><span class="capital">R</span>etro photos</div>
<div class="clear"></div>
<div class="line">
<div class="gray_line">
<div class="date_block">Mar 18th</div>
</div>
<div class="gray_line_lite">
<div class="date_block_lite">in: Photos, Retro</div>
</div>
</div>
<div class="content_block">
<div class="content_image">
<img...
CSS
html, body{
margin: 0;
padding: 0;
background-color: #163039;
height: 100%;
}
.wraper{
min-height: 100%;
width: 929px;
margin: 0 auto;
background: white;
padding-bottom: 0px;
}
* html .wraper{
height: 100%
}
.header{
height: 312px;
width: 929px;
margin: auto;
background: #163039;
position: relative;
background-image: url(http://image.kz/img/b2/b2260770a56c0e9444d81e5e94e49972.png);
}
.wraper .content{
padding: 30px 0 130px;
background: #fff;
width: 929px;
margin: 0 auto;
}
.content{
overflow: hidden;
}
.header li{
list-style-type: none;
font-family: acebinghamsh;
font-size: 30px;
float: left;
padding-right: 35px;
}
.menu{
top: 200px;
position: relative;
}
.menu a{
text-decoration: none;
color: #474747;
}
.disin{
width: 244px;
top: 125px;
position: relative;
color: white;
font-size: 26px;
left: 50px;
text-align: center;
}
.head_text{
text-align: center;
width: 244px;
top: 140px;
position: relative;
left: 46px;
}
.footer{
height: 117px;
width: 929px;
background: #163039;
margin: 0 auto;
background-image: url(http://image.kz/img/03/039cdc6e3180318f592956072037f6da.png);
margin-top: -117px;
}
.left_block{
width: 530px;
float: left;
}
.right_block{
width: 350px;
float: right;
}
.floor{
background-image: url(http://image.kz/img/d9/d951e59fcaf162c2bcdc5341084dfdea.png);
height: 64px;
width: 65px;
float: left;
}
.block_cont{
padding-left: 35px;
padding-bottom: 50px;
}
.cont_text{
float: left;
font-size: 24px;
font-family: Arial;
padding-left: 5px;
}
.capital{
font-size: 60px;
}
.gray_line{
background-image: url(http://image.kz/img/ab/abc8175257fa661b379e96edd74ecbb3.png);
width: 74px;
height: 17px;
float: left;
}
.gray_line_lite{
background-image:...