/** The articles table of content presents the list of articles on the site to

* the users
*/

table-of-articles

width: 90%
max-width: 1012px
margin: 50px auto 50px auto

/** The articles page header
  */
#article-page-header
  margin: 0px auto 0px auto
  font-size: 34px
  font-weight: 600
  text-align: center
  color: $color-custom-primary

/** The div holding the article title and date of publication
  */
.post
  border-bottom: 1px solid $color-light-grey

  /** The first instance should be 50px away from the page header
    */
  &:first-of-type
    margin-top: 50px

  /** The last instance should not have a border-bottom
    */
  &:last-of-type
    border: none

  /** The article title
    */
  .post-title
    font-size: 18px
    margin-bottom: 0px

  /** The article data of publication
    */
  .post-date
    margin-top: 0px