mirror of
https://github.com/danog/sass-site.git
synced 2024-12-13 09:57:35 +01:00
49 lines
900 B
SCSS
49 lines
900 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;
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// SMALL TABLET
|
|
|
|
@mixin headings-small-tablet {
|
|
h1 { @include font-size($font-size-xx-large); }
|
|
} |