sass-site/source/assets/stylesheets/foundation/_headings.scss
Jina Bolton 3b465c6ffa boom
2013-02-08 19:10:33 -08:00

50 lines
937 B
SCSS

// ===========================================================================
// HEADINGS
$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;
}
h1,
h3 {
@extend %chaparral-pro-regular;
letter-spacing: -0.05em;
}
h1 {
@include font-size($font-size-x-large);
color: $heading-1-text-color;
}
h2 {
@extend %caps;
color: $heading-2-text-color;
}
h3 {
padding-bottom: 0;
@include font-size($font-size-large);
color: $heading-3-text-color;
}
// ---------------------------------------------------------------------------
// iPhone
@mixin headings-iPhone {
h1 { @include font-size($font-size-xx-large); }
h3 { @include font-size($font-size-x-large); }
}