/**
 *  LESS File for Site Pagination
 */

 .pagination {
     width: 100%;
     justify-content: center;
     .title-font;
     .size(20px);
     .weight(700);
     .page-numbers {
        margin: 0 10px;
     }
     .current {
         position: relative;
         &:before {
             position: absolute;
             content: "";
             width: 15px;
             height: 4px;
             background-color: @accent;
             bottom: -30%;
             left: -20%;
             right: -20%;
         }
     }
 }

.post-navigation {
    display: inline-block;
    width: 100%;
    .size(20px);
    .weight(700);
    span.nav-subtitle {
        margin: auto 6px;
        .size(24px);
    }
}
