The design has been slightly modernized in the process. jQuery was also removed as it is no longer required, resulting in faster page loading times. Gallery thumbnails were regenerated at an higher resolution to match the new design.
36 lines
838 B
Sass
36 lines
838 B
Sass
$notification-background-color: $background !default
|
|
$notification-radius: $radius !default
|
|
$notification-padding: 1.25rem 2.5rem 1.25rem 1.5rem !default
|
|
|
|
.notification
|
|
@extend %block
|
|
background-color: $notification-background-color
|
|
border-radius: $notification-radius
|
|
padding: $notification-padding
|
|
position: relative
|
|
a:not(.button):not(.dropdown-item)
|
|
color: currentColor
|
|
text-decoration: underline
|
|
strong
|
|
color: currentColor
|
|
code,
|
|
pre
|
|
background: $white
|
|
pre code
|
|
background: transparent
|
|
& > .delete
|
|
position: absolute
|
|
right: 0.5rem
|
|
top: 0.5rem
|
|
.title,
|
|
.subtitle,
|
|
.content
|
|
color: currentColor
|
|
// Colors
|
|
@each $name, $pair in $colors
|
|
$color: nth($pair, 1)
|
|
$color-invert: nth($pair, 2)
|
|
&.is-#{$name}
|
|
background-color: $color
|
|
color: $color-invert
|