49 lines
900 B
SCSS
Raw Normal View History

// ===========================================================================
// HEADINGS
2013-02-08 19:10:33 -08:00
$heading-1-text-color: $venus !default;
$heading-2-text-color: $pale-sky !default;
$heading-3-text-color: $regent-grey !default;
// ---------------------------------------------------------------------------
// MOBILE
#{headings(1, 3)} {
@extend %block-text;
line-height: $line-height-reset;
}
2012-11-28 03:59:42 -08:00
h1,
h3 {
@extend %chaparral-pro-regular;
letter-spacing: -0.05em;
2013-02-08 19:10:33 -08:00
}
2012-11-28 08:23:08 -08:00
2013-02-08 19:10:33 -08:00
h1 {
@include font-size($font-size-x-large);
color: $heading-1-text-color;
2012-11-28 03:59:42 -08:00
}
h2 {
2013-02-08 19:10:33 -08:00
@extend %caps;
2012-11-28 03:59:42 -08:00
color: $heading-2-text-color;
}
h3 {
2013-02-08 19:10:33 -08:00
padding-bottom: 0;
@include font-size($font-size-large);
2012-11-28 03:59:42 -08:00
color: $heading-3-text-color;
2013-02-08 19:10:33 -08:00
}
// ---------------------------------------------------------------------------
2013-02-10 15:04:29 -08:00
// SMALL TABLET
2012-11-28 08:23:08 -08:00
2013-02-10 15:04:29 -08:00
@mixin headings-small-tablet {
2013-02-08 19:10:33 -08:00
h1 { @include font-size($font-size-xx-large); }
}