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

_catalogue.scss « tale « scss « assets - github.com/EmielH/tale-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ec065a16b60ca31d57d891660ac99cdb2b41c3a8 (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
37
38
39
.catalogue {
  &-item {
    border-bottom: 1px solid var(--grey-2);
    color: var(--default-color);
    display: block;
    padding: 2rem 0;

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

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

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

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

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