Sha256: 2072928613bb91968cddb62e7e0be9611fb92be6b20380b96054fc6112d6b019
Contents?: true
Size: 983 Bytes
Versions: 12
Compression:
Stored size: 983 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
12 entries across 12 versions & 1 rubygems