Sha256: 8f0a4f1bab2ed2128ae4dfbbe8f8dede101bf3a01c5ac86f503e5a5a42623be7

Contents?: true

Size: 1004 Bytes

Versions: 11

Compression:

Stored size: 1004 Bytes

Contents

// Default silent classes. To use in your final CSS, use the following syntax:
// .foo {
//   @extend %silent_class;
// }


//* Text classes */
%headings_1 {
  @include heading();
}

%headings_2 {
  @include heading($heading_2);
}

%headings_3 {
  @include heading($heading_3);
}

%headings_4 {
  @include heading($heading_4);
}

%headings_5 {
  @include heading($heading_5);
}

%headings_6 {
  @include heading($heading_6);
}


%small {
  @include small;
}

%medium {
  @include medium;
}

%large {
  @include large;
}





//* Font family classes */
%primary_font_family {
  font-family: $primary_font_family;
}

%secondary_font_family {
  font-family: $secondary_font_family;
}

%heading_font_family {
  font-family: $heading_font_family;
}





//* Hide Text, Kellum Method */
%hide_text {
  @include hide_text;
}




//* Standard content block styling */
%bulleted_list {
  @include bulleted_list;
}

%content_block {
  @extend %standard_block_spacing;
  float: left;
  @extend %bulleted_list;
}



Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
stipe-0.0.4.7 stylesheets/stipe/typography/_extends.scss
stipe-0.0.4.6 stylesheets/stipe/typography/_extends.scss
stipe-0.0.4.5 stylesheets/stipe/typography/_extends.scss
stipe-0.0.4.4 stylesheets/stipe/typography/_extends.scss
stipe-0.0.4.3 stylesheets/stipe/typography/_extends.scss
stipe-0.0.4.2 stylesheets/stipe/typography/_extends.scss
stipe-0.0.4.1 stylesheets/stipe/typography/_extends.scss
stipe-0.0.4.0 stylesheets/stipe/typography/_extends.scss
stipe-0.0.3.9 stylesheets/stipe/typography/_extends.scss
stipe-0.0.3.8 stylesheets/stipe/typography/_extends.scss
stipe-0.0.3.7 stylesheets/stipe/typography/_extends.scss