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

Alexander Bilz
21.58.2022 c21644c20739b563accbd3277672a12bbc7900c4
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
.notice {
  display:  flex;
  flex-direction: column;
 
  @include themed() {
    background-color: t('notice-info');
  }
 
  &--update {
 
    @include themed() {
      background-color: t('notice-update');
    }
  }
  &--warning {
 
    @include themed() {
      background-color: t('notice-warning');
    }
  }
 
  &__title {
    background-color: rgb(96, 134, 180);
    align-self: flex-end;
    font-weight: 300;
    letter-spacing: 0.025em;
    padding: 0.2rem 0.2rem 0.2rem 0.2rem;
 
    @include themed() {
      color: t('accent');
    }
 
    &--update {
      background-color: rgb(81, 216, 138);
    }
    &--warning {
      background-color: rgb(239, 87, 83);
    }
  }
 
  &__content {
    max-width: 100%;
    margin: 0px 1.5rem auto auto;
    padding: 8px 8px 1rem 1rem;
  }
}