• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1.article__content {
2  p.success {
3    padding: map-get($spacers, 2) map-get($spacers, 3);
4    background-color: rgba($green, .1);
5    border: 1px solid $green;
6    border-radius: map-get($base, border-radius);
7  }
8
9  p.info {
10    padding: map-get($spacers, 2) map-get($spacers, 3);
11    background-color: rgba($blue, .1);
12    border: 1px solid $blue;
13    border-radius: map-get($base, border-radius);
14  }
15
16  p.warning {
17    padding: map-get($spacers, 2) map-get($spacers, 3);
18    background-color: rgba($yellow, .1);
19    border: 1px solid $yellow;
20    border-radius: map-get($base, border-radius);
21  }
22
23  p.error {
24    padding: map-get($spacers, 2) map-get($spacers, 3);
25    background-color: rgba($red, .1);
26    border: 1px solid $red;
27    border-radius: map-get($base, border-radius);
28  }
29}