sass-site/source/assets/stylesheets/foundation/_headings.scss

34 lines
693 B
SCSS
Raw Normal View History

// ===========================================================================
// HEADINGS
2012-11-28 12:59:42 +01:00
h1,
h2,
h3 { @extend %heading-text; }
h1,
h3 {
@extend %chaparral-pro-regular;
@include font-size($font-size-larger, $line-height-heading);
letter-spacing: -0.05em;
2012-11-28 12:59:42 +01:00
color: $heading-1-text-color;
2012-11-28 17:23:08 +01:00
@include at-breakpoint($break-iPhone-wide) {
@include font-size($font-size-largest, $line-height-heading);
}
2012-11-28 12:59:42 +01:00
}
h2 {
2012-11-28 17:23:08 +01:00
@include caps;
2012-11-28 12:59:42 +01:00
color: $heading-2-text-color;
}
h3 {
2012-11-28 17:23:08 +01:00
@include font-size($font-size-large, $line-height-heading);
2012-11-28 12:59:42 +01:00
color: $heading-3-text-color;
2012-11-28 17:23:08 +01:00
@include at-breakpoint($break-iPhone-wide) {
@include font-size($font-size-larger, $line-height-heading);
}
}