Испытание 18\18. 92% не могу победить иконки. Помогите!

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;
margin-left: 75;
}
.post .post-title {
position: absolute;
top: 0px;
left: 75px;
font-size: 20px;
color: #2980b9;
}
.post .post-date {
position: absolute;
top: 0px;
left: 0px;
width: 55px;
height: 55px;
line-height: 55px;
background: #ffffff;
border-bottom: 5px solid #bdc3c7;
text-align: center;
vertical-align: 50% 50%;
font-weight: bold;
font-size: 15px;
}
.post .post-type {
position: absolute;
top: 70px;
left: 0px;
width: 55px;
height: 55px;
border-bottom: 5px solid #bdc3c7;
background: #7f8c8d url("/assets/course14/quotes.png") no-repeat 50% 50%;
}
.post .post-author {
margin-bottom: 5px;
padding-left: 75px;
padding-top: 30px;
}
.post .post-author a {
color: #2980b9;
text-decoration: none;
}
.post .post-stats {
position: relative;
top: 0px;
left: 100px;
margin-right: 20px;
display: inline-block;
white-space: nowrap;
width: 165px
margin-left: 30px;
margin-bottom: 0;

}
.post .post-stats .icon {

}
.post .post-stats a {
display: inline-block;
color: #2980b9;
text-decoration: none;
white-space: nowrap;
}
.post .post-stats .icon-tags {
left: 10px;
background: url("/assets/course14/post-challenge.png") no-repeat 0 0;
}
.post .post-stats .icon-comments {
right: 10px;
background: url("/assets/course14/post-challenge.png") no-repeat -20px 0;
}
.post-text {
position: absolute;
top: 60px;
margin-left: 75px;
width: 165px;
height: 95px;
background: #ffffff;
padding: 10px 15px;
border-bottom: 5px solid #bdc3c7;

}

Нет такого свойства. Почитайте темы на форуме. Это задание разобрано вдоль и поперёк.

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;
}
.post .post-title {
margin-bottom: 5px;
margin-left: 75px;
font-size: 20px;
color: #2980b9;
}
.post .post-date {
position: absolute;
top: 0px;
left: 0px;
width: 55px;
height: 55px;
line-height: 55px;
background: #ffffff;
border-bottom: 5px solid #bdc3c7;
text-align: center;
vertical-align: 50% 50%;
font-weight: bold;
font-size: 15px;
}
.post .post-type {
position: absolute;
top: 70px;
left: 0px;
width: 55px;
height: 55px;
border-bottom: 5px solid #bdc3c7;
background: #7f8c8d url("/assets/course14/quotes.png") no-repeat 50% 50%;
}
.post .post-author {
margin-bottom: 5px;
padding-left: 75px;
}
.post .post-author a {
color: #2980b9;
text-decoration: none;
}
.post .post-stats {
position: relative;
top: 0px;
left: 100px;
margin-right: 20px;
display: inline-block;
margin-left: 0px;
margin-bottom: 0;
}
.post .post-stats .icon {
position: absolute;
width: 15px;
height: 15px;
right: 20px;
}
.post .post-stats a {
color: #2980b9;
text-decoration: none;
}
.post .post-stats .icon-tags {
position: absolute;
left: -20px;
background: url("/assets/course14/post-challenge.png") no-repeat 0 0;
}
.post .post-stats .icon-comments {
right: 5px;
background: url("/assets/course14/post-challenge.png") no-repeat -20px 0;
}
.post-text {
margin-left: 75px;
width: 165px;
height: 95px;
background: #ffffff;
padding: 10px 15px;
border-bottom: 5px solid #bdc3c7;
}
Вот здесь 96% точности, но с отрицательными отступами.

Хоть абсолютное позиционирование исчезло для блока с текстом…
У вас есть внешний отступ 75px, есть внутренний отступ 75px. Может есть смысл определиться, с какими отступами код выглядит лучше и писать единообразно?
Так же с координатами для иконок. Где-то вы позиционируете от левого края, а где-то от правого. Здесь тоже можно экспериментировать.