18/18 - 93% Дайте фидбэк кода.

Все уперлось в 93% и незначительное расхождение, буквально в пару px.
Подскажите ключевые ошибки, ибо не даст покоя)

   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-stats .icon {
    width: 15px;
    height: 15px;
}

.post {
    position: relative;
}

.post-title {
    font-size: 20px;
    color: #2980b9;
    margin-left: 75px;
    margin-bottom: 5px
}

.post-author {
    color: #7f8c8d;
    margin-left: 75px;
    margin-bottom: 5px
}

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

.icon {
    background: url("/assets/course14/post-challenge.png") no-repeat;
    display: inline-block;
    vertical-align: middle
}

.post-stats {
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 10px;
}

.icon-comments {
    background-position: -20px 0px;
}

.icon-tags {
    background-position: 0px 0px;
    margin-left: 75px
}

.post-text {
    background: #fff;
    padding: 10px 15px;
    width: 165px;
    border-bottom: 5px solid #bdc3c7;
    color: #7f8c8d;
    margin-left: 75px
}

.post-date {
    border-bottom: 5px solid #bdc3c7;
    background: #fff;
    width: 55px;
    height: 35px;
    font-size: 15px;
    font-weight: 700;
    color: #7f8c8d;
    position: absolute;
    top: -0px;
    text-align: center;
    padding-top: 20px;
    line-height: 15px
}

.post-type {
    border-bottom: 5px solid #bdc3c7;
    background: #7f8c8d url("/assets/course14/quotes.png") no-repeat;
    width: 35px;
    padding: 20px 10px;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    top: 70px;
    height: 15px;
    background-position: 50% 50%
}

.icon-tags {
    margin-right: 2px
}

Доброй ночи! Возможно, Вас натолкнёт на правильный путь мысль, что .post-stats нужно задать относительное позиционирование, а .icon - абсолютное…

1 лайк