Подскажите пожалуйста вроде всё сделал, но образовался странный отступ и если следовать условиям все отступы кратны 5 то не получается.
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>Испытание: анонс поста</title>
</head>
<body>
<div class="post">
<div class="post-title">Интенсив: программа</div>
<div class="post-date">13.09</div>
<div class="post-type"></div>
<div class="post-author">
Автор: <a href="#">HTML Academy</a>
</div>
<div class="post-stats">
<div class="icon icon-tags"></div>
<a href="#">интенсив</a>,
<a href="#">программа</a>
</div>
<div class="post-stats">
<div class="icon icon-comments"></div>
<a href="#">5</a>
</div>
<div class="post-text">Работа над интенсивом идёт полным ходом. Мы нашли крутых людей в команду и решили еще кучу задач. Но сегодня я подробнее расскажу о работе над программой интенсива.</div>
</div>
</body>
</html>
html,
body {
margin: 0;
padding: 0;
background-color: #ffffff;
}
body {
width: 280px;
min-height: 250px;
padding-top: 50px;
padding-left: 10px;
padding-right: 10px;
font-size: 12px;
font-family: "Arial", sans-serif;
line-height: 1.2;
color: #7f8c8d;
background: #ecf0f1;
}
a {
color: #2980b9;
text-decoration: none;
}
.post {
position: relative;
padding-left: 75px;
}
.post-title {
font-size: 1.7em;
color: #2980b9;
}
.post-date, .post-type {
top: 0;
left: 0;
position: absolute;
width: 55px;
height: 55px;
line-height: 55px;
border-bottom: 5px solid #bdc3c7;
}
.post-date {
background-color: #ffffff;
vertical-align: middle;
text-align: center;
font-size: 15px;
font-weight: bold;
color: #7f8c8d;
}
.post-type {
top: 70px;
background: url("/assets/course14/quotes.png") no-repeat;
background-position: 50% 50%;
background-color: #7f8c8d;
}
.post-author, .post-stats {
margin-top: 5px;
}
.post-stats {
display: inline-block;
margin-right: 10px;
}
.icon-tags, .icon-comments {
background: url("/assets/course14/post-challenge.png") no-repeat;
display: inline-block;
vertical-align: top;
}
.icon-comments {
background-position: -20px 0;
}
.post-stats .icon {
width: 15px;
height: 15px;
display: inline-block;
}
.post-text {
background-color: #ffffff;
padding: 10px 15px 10px 15px;
border-bottom: 5px solid #bdc3c7;
width: 165px;
}