summaryrefslogtreecommitdiff
path: root/_sass/additional/_tag.scss
blob: 6a418edcfd80071fa613c26af8949c8ffcbac7f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.article__content {
  code.success {
    color: $text-color-function;
    background-color: $green;
  }

  code.info {
    color: $text-color-function;
    background-color: $blue;
  }

  code.warning {
    color: $text-color-function;
    background-color: $yellow;
  }

  code.error {
    color: $text-color-function;
    background-color: $red;
  }
}