Испытание 18/18, проблема с .post-stats

Не могу решить проблему с элементами .post-stats.
Помогите пожалуйста. Так же хотелось бы узнать, как в целом мой код смотрится, не делаю ли я чего-то лишнего?

html,

body {
margin: 0;
padding: 0;
}

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;
}

.post {
position: relative;
padding-left: 75px;
}

.post-title {
color: #2980b9;
font-size: 20px;
}

.post-date {
position: absolute;
background: white;
font-weight: bold;
font-size: 15px;
border-bottom: 5px solid #bdc3c7;
width: 55px;
line-height: 55px;
text-align: center;
left: 0;
top: 0;
}

.post-type {
width: 55px;
background: #7f8c8d url(’/assets/course14/quotes.png’) no-repeat 50% 50%;
height: 55px;
border-bottom: 5px solid #bdc3c7;
position: absolute;
left: 0;
top: 70px;
}

.post-author {
margin-top: 5px;
margin-bottom: 5px;
}

.post-author a{
text-decoration: none;
color: #2980b9;
}

.post-stats {
display: inline-block;
}

.post-stats .icon {
width: 15px;
height: 15px;
background: url(’/assets/course14/post-challenge.png’) no-repeat;
display: inline-block;
vertical-align: bottom;
}

.post-stats .icon-tags {
background-position: 0 0;
}

.post-stats .icon-comments {
background-position: -20px 0;
margin-left: 10px;
}

.post-stats a {
text-decoration: none;
color: #2980b9;
}

.post-text {
padding: 10px 15px;
background: #ffffff;
width: 165px;
border-bottom: 5px solid #bdc3c7;
}

'этот блок (post-stats) делается по тому же принципу, по которому делался блок Контакты в уроках 10/18-12/18. Для этого задаем .post-stats относительное позиционирование и паддинг слева (это будет пустое место для иконки), для иконок - соответственно, абсолютное (ну и подходящие цифры для позиционирования) и всё :slight_smile:

Точно, спасибо.