aboutsummaryrefslogtreecommitdiff
path: root/_sass/_catalogue.scss
blob: efc113c6ec31574a406a7c4aa88a1fa076c756a3 (plain) (blame)
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
37
38
39
.catalogue {
    &-item {
        border-bottom: 1px solid $grey-2;
        color: $default-color;
        display: inline-block;
        padding: 2rem 0;

        &:hover .catalogue-line,
        &:focus .catalogue-line {
            width: 5rem;
        }

        &:last-child {
            border: 0;
        }
    }

    &-time {
        color: $default-tint;
        font-family: $serif-secondary;
        letter-spacing: .5px;
    }

    &-title {
        color: $default-shade;
        display: block;
        font-family: $sans-serif;
        font-size: 2rem;
        font-weight: 700;
        margin: .5rem 0;
    }

    &-line {
        @include transition(all .3s ease-out);
        border-top: .2rem solid $default-shade;
        display: block;
        width: 2rem;
    }
}