bulma and fontawesome instaled
[josuexyz/.git] / node_modules / bulma / sass / elements / notification.sass
1 $notification-background-color: $background !default
2 $notification-code-background-color: $scheme-main !default
3 $notification-radius: $radius !default
4 $notification-padding: 1.25rem 2.5rem 1.25rem 1.5rem !default
5
6 .notification
7   @extend %block
8   background-color: $notification-background-color
9   border-radius: $notification-radius
10   padding: $notification-padding
11   position: relative
12   a:not(.button):not(.dropdown-item)
13     color: currentColor
14     text-decoration: underline
15   strong
16     color: currentColor
17   code,
18   pre
19     background: $notification-code-background-color
20   pre code
21     background: transparent
22   & > .delete
23     position: absolute
24     right: 0.5rem
25     top: 0.5rem
26   .title,
27   .subtitle,
28   .content
29     color: currentColor
30   // Colors
31   @each $name, $pair in $colors
32     $color: nth($pair, 1)
33     $color-invert: nth($pair, 2)
34     &.is-#{$name}
35       background-color: $color
36       color: $color-invert