mirror of https://github.com/lxndrblz/anatole.git

lxndrblz
20.46.2025 abeac350e8f49e780d9cad886856fcde2a91abc2
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
47
48
@use 'modules/color_theme' as color;
 
.archive {
  margin: 30px;
 
  &__heading {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 2.2em;
 
    @include color.themed() {
      color: 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 color.themed() {
        color: color.t('primary-light');
      }
    }
 
    &-title {
      display: inline-block;
      flex: 0.96;
 
      @include color.themed() {
        color: color.t('primary');
      }
      &:hover {
        @include color.themed() {
          color: color.t('info');
        }
      }
    }
  }
}