FSahin adlı üyeden alıntı: mesajı görüntüle
Çünkü kodları SASS ile yazdım. SASS to CSS converter kullanarak kodları çevirebilirsiniz.

Buyrun CSS kodları:

body {
  counter-reset: section;
}

.sidebar-posts {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-posts .post {
  background: #f2f2f2;
  padding: 10px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 40px;
}

.sidebar-posts .post:before {
  counter-increment: section;
  content: counter(section);
  position: absolute;
  top: 50%;
  left: 10px;
  font-size: 40px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #666;
}

.sidebar-posts .post .post-title {
  margin: 0 0 10px;
}

.sidebar-posts .post .post-title a {
  text-decoration: none;
  color: #222;
}
/*# sourceMappingURL=stil.css.map */
Şuan da oldu çok çok teşekkür ederim. Birebir çalıştı.