2012-11-28 12:09:54 +01:00
|
|
|
// ===========================================================================
|
|
|
|
// 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;
|
2013-02-24 07:04:16 +01:00
|
|
|
text-align: center;
|
2013-02-09 04:10:33 +01:00
|
|
|
line-height: $line-height-reset;
|
|
|
|
}
|
2012-11-28 12:59:42 +01:00
|
|
|
|
|
|
|
h1,
|
|
|
|
h3 {
|
2013-02-24 07:04:16 +01:00
|
|
|
font-weight: 300;
|
2012-11-28 12:59:42 +01:00
|
|
|
@extend %chaparral-pro-regular;
|
2013-02-24 07:04:16 +01:00
|
|
|
letter-spacing: -0.025em;
|
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); }
|
2012-11-28 12:09:54 +01:00
|
|
|
}
|