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

49 lines
900 B
SCSS
Raw Normal View History

// ===========================================================================
// HEADINGS
2013-02-09 04:10:33 +01: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 12:59:42 +01:00
h1,
h3 {
@extend %chaparral-pro-regular;
letter-spacing: -0.05em;
2013-02-09 04:10:33 +01:00
}
2012-11-28 17:23:08 +01:00
2013-02-09 04:10:33 +01:00
h1 {
@include font-size($font-size-x-large);
color: $heading-1-text-color;
2012-11-28 12:59:42 +01:00
}
h2 {
2013-02-09 04:10:33 +01:00
@extend %caps;
2012-11-28 12:59:42 +01:00
color: $heading-2-text-color;
}
h3 {
2013-02-09 04:10:33 +01:00
padding-bottom: 0;
@include font-size($font-size-large);
2012-11-28 12:59:42 +01:00
color: $heading-3-text-color;
2013-02-09 04:10:33 +01:00
}
// ---------------------------------------------------------------------------
2013-02-11 00:04:29 +01:00
// SMALL TABLET
2012-11-28 17:23:08 +01:00
2013-02-11 00:04:29 +01:00
@mixin headings-small-tablet {
2013-02-09 04:10:33 +01:00
h1 { @include font-size($font-size-xx-large); }
}