mirror of https://github.com/Requarks/wiki.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
449 B
21 lines
449 B
.notification
|
|
@extend .block
|
|
+clearfix
|
|
background-color: $background
|
|
border-radius: $radius
|
|
padding: 16px 20px
|
|
position: relative
|
|
.delete
|
|
border-radius: 0 $radius
|
|
float: right
|
|
margin: -16px -20px 0 20px
|
|
.subtitle,
|
|
.title
|
|
color: inherit
|
|
// Colors
|
|
@each $name, $pair in $colors
|
|
$color: nth($pair, 1)
|
|
$color-invert: nth($pair, 2)
|
|
&.is-#{$name}
|
|
background-color: $color
|
|
color: $color-invert
|