Sha256: 414785d13b8d54fc44e57ba194b11693558bfec2ed5451fe3e9312ef83a32f80

Contents?: true

Size: 1.4 KB

Versions: 1

Compression:

Stored size: 1.4 KB

Contents

// ------------------------------------------------------------------- //
// Kentucky Headings
// 
// The goal here is to define headings and establish practical
// font-sizing from the get go.
//
// Also includes a "double-stranded hierarchy" allowing you to use HTML
// heading elements or the alternate extend included (based on the 
// military alphabet).
// ------------------------------------------------------------------- //

@include headings(1,6){
  font-family: $brand-font-family;
}

h1,
%alpha{
  @include font-size($h1-size);
}

h2,
%bravo{
  @include font-size($h2-size);
}

h3,
%charlie{
  @include font-size($h3-size);
}

h4,
%delta{
  @include font-size($h4-size);
}

h5,
%echo{
  @include font-size($h5-size);
}

h6,
%foxtrot{
  @include font-size($h6-size);
}


// ------------------------------------------------------------------- //
// Heading Groups
// 
// Target a group of headers stacked together (such as title/subtitle)
// ------------------------------------------------------------------- //

%hgroup{
  @include headings(1,6){
    margin-bottom: 0;
  }
}


// ------------------------------------------------------------------- //
// A set of extends for massive type (heroes, mastheads, etc.)
// ------------------------------------------------------------------- //

%giga{
  @include font-size($giga-size);
}
%mega{
  @include font-size($mega-size);
}
%kilo{
  @include font-size($kilo-size);
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kentucky-0.3.0 app/assets/stylesheets/kentucky/base/_headings.scss