18/18 100% На оценку

Удалось выполнить на 100% (правда пришлось воспользоваться подсказкой по позиционированию иконок в комментариях). Есть ли какие-то замечания по выполнению или может можно сделать как-то лучше?

Код

html,
body {
margin: 0;
padding: 0;
}

body {
width: 280px;
min-height: 250px;
padding-top: 50px;
padding-right: 10px;
padding-left: 10px;

font-size: 12px;
line-height: 1.2;
font-family: “Arial”, sans-serif;
color: #7f8c8d;

background-color: #ecf0f1;
}

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

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

.post-date {
position: absolute;
top: 0;
left: -75px;
width: 55px;
height: 55px;
line-height: 55px;
text-align: center;
font-size: 15px;
font-weight: bold;
color: #7f8c8d;
background-color: white;
box-shadow: 0 5px 0 #bdc3c7;
}

.post-type {
position: absolute;
left: -75px;
top: 70px;
width: 55px;
height: 55px;
background: #7f8c8d url(“quotes.png”) no-repeat 50% 50%;
box-shadow: 0 5px 0 #bdc3c7;
}

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

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

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

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

.icon-tags + a {
margin-left: 20px;
}

.icon-comments + a {
margin-left: 30px;
}

.post-stats .icon {
position: absolute;
width: 15px;
height: 15px;
}

.post-stats .icon-tags {
background: url(“post-challenge.png”) no-repeat 0 0;
}

.post-stats .icon-comments {
margin-left: 10px;
background: url(“post-challenge.png”) no-repeat -20px 0;
}

.post-text {
width: 165px;
padding: 10px 15px;
background-color: white;
box-shadow: 0 5px 0 #bdc3c7;
}

В целом норм. Только в.post-date height можно не задавать так как line-height задан.
И вместо этого

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

просто задайте всем ссылкам color: #2980b9; и text-decoration: none;