sass-site/source/assets/stylesheets/components/_messages.scss
2012-11-28 08:23:08 -08:00

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; }
}
}