mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
14 lines
316 B
Sass
14 lines
316 B
Sass
|
.callout
|
||
|
+block
|
||
|
background-color: $background
|
||
|
border-radius: $radius
|
||
|
padding: 1.25rem 2.5rem 1.25rem 1.5rem
|
||
|
position: relative
|
||
|
// Colors
|
||
|
@each $name, $pair in $colors
|
||
|
$color: nth($pair, 1)
|
||
|
$color-invert: nth($pair, 2)
|
||
|
&.is-#{$name}
|
||
|
background-color: $color
|
||
|
color: $color-invert
|