mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 09:29:58 +01:00
26 lines
602 B
SCSS
26 lines
602 B
SCSS
// ===========================================================================
|
|
// MESSAGES
|
|
|
|
|
|
|
|
.message {
|
|
@extend %chaparral-pro-regular;
|
|
clear: both;
|
|
padding: .66666666666667em;
|
|
background: $callout-background-color;
|
|
color: $callout-text-color;
|
|
|
|
a,
|
|
strong { @extend %chaparral-pro-semibold; }
|
|
|
|
a { @include link(darken($callout-text-color, 5%), darken($callout-text-color, 15%), darken($callout-text-color, 25%)); }
|
|
|
|
p,
|
|
ul {
|
|
padding: .25em 0;
|
|
@include font-size($font-size-large);
|
|
|
|
&:first-child { padding-top: 0; }
|
|
&:last-child { padding-bottom: 0; }
|
|
}
|
|
} |