Sha256: a9632f26b01dad7b42da2b2516bb62674aed710b86824c724aa1c5e6cec1795a

Contents?: true

Size: 987 Bytes

Versions: 5

Compression:

Stored size: 987 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

5 entries across 5 versions & 1 rubygems

Version Path
stipe-0.0.3.6 stylesheets/stipe/typography/_extends.scss
stipe-0.0.3.5 stylesheets/stipe/typography/_extends.scss
stipe-0.0.3.4 stylesheets/stipe/typography/_extends.scss
stipe-0.0.3.3 stylesheets/stipe/typography/_extends.scss
stipe-0.0.3.2 stylesheets/stipe/typography/_extends.scss