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

_archive.scss « components « partials « scss « assets - github.com/lxndrblz/anatole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7a58f63e60a2173f1757d95f81545caf18917078 (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
40
41
42
43
44
45
46
.archive {
  margin: 30px;

  &__heading {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 2.2em;

    @include themed() {
      color: t('primary');
    }
  }

  &__list {
    padding: 0;

    &-item {
      display: flex;
      justify-content: space-between;
      padding-bottom: 5px;
      list-style-type: none;
    }

    &-date {
      text-align: right;

      @include themed() {
        color: t('primary-light');
      }
    }

    &-title {
      display: inline-block;
      flex: 0.96;

      @include themed() {
        color: t('primary');
      }
      &:hover {
        @include themed() {
          color: t('info');
        }
      }
    }
  }
}