mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 09:29:58 +01:00
23 lines
428 B
SCSS
23 lines
428 B
SCSS
// ===========================================================================
|
|
// MESSAGES
|
|
|
|
|
|
|
|
$message-background-color: $callout-background-color !default;
|
|
|
|
|
|
|
|
.message {
|
|
@extend %chaparral-pro-regular;
|
|
position: relative;
|
|
padding: {
|
|
top: .5em;
|
|
bottom: .5em;
|
|
}
|
|
background: $message-background-color;
|
|
@include box-shadow-both;
|
|
|
|
ul { @include reset-list; }
|
|
|
|
strong { @extend %chaparral-pro-semibold; }
|
|
} |