Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_pagination.scss « components « scss « src - github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f7be2559781af46224fcd9bc409ae869e3f5b2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
.pagination-bar {
    height: auto;
    width:  100%;
    height: $pagination-height;

    .pagination {
        height:      $pagination-height;
        line-height: $pagination-height;
        display:     block;
        list-style:  none;
        padding:     0 10px;
        width:       auto;

        .pagination-prev,
        .pagination-next {
            float:        left;
            margin-right: 10px;
        }
        .pagination-number {
            float:     right;
            font-size: map-get($font-size, small);
            color:     map-get($colors, light);
        }
    }
}