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

_archive.scss « components « scss « src - github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02183b848e92962df8a45dff686b69e4d560accd (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
26
27
28
29
30
31
32
33
34
35
36
.archive-result {
    display: none;
}

.archive {
    .archive-title {
        color: $font-color-base;

        &:hover {
            text-decoration: underline;
        }
    }
    .archive-posts {
        list-style: none;

        .archive-post {
            .archive-post-title {
                margin-left: 10px;
                color:       $font-color-base;

                &:hover {
                    text-decoration: underline;
                }
            }
            .archive-post-date {
                color: map-get($colors, light);
            }
            // Change style of the list by adding font-awesome icon
            &::before {
                font-family: 'FontAwesome';
                content:     '\f0da';
                font-size:   map-get($font-size, small);
            }
        }
    }
}