Sha256: b88fb54bf612e211150df7d0543922d88a8dc9c2a1fd255b5629a1d855e66e13
Contents?: true
Size: 1.77 KB
Versions: 3
Compression:
Stored size: 1.77 KB
Contents
/** * Typography: Headings, body text, lists, code, and more for a versatile and durable typography system. */ body { font-family: $font-body; font-size: $base-font-size; line-height: $base-line-height; } /* ============================================================================= Typography Note: Normalize already sets the font sizes, use this to override ========================================================================== */ // Helper for all headings. #{headings()} { } h1 { } h2 { } h3 { } h4 { } h5 { } h6 { } /* ============================================================================= Links The order of link states are based on Eric Meyer's article: http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states ========================================================================== */ a { &:link { color: $link; } &:visited { color: $visited; } &:hover, &:focus { } &:active, &.active { } } /* ============================================================================= Lists ========================================================================== */ ul, ol { } ul ul, ul ol, ol ol, ol ul { margin-bottom: 0; } ul { } ol { } li { } ul.unstyled, ol.unstyled { } /* ============================================================================= Misc. ========================================================================== */ // Horizontal rules hr { height: 1px; border: 1px solid #666; padding-bottom: -1px; margin: rhythm(1) 0; } // Emphasis strong { font-weight: bold; } em { font-style: italic; } // Selection text // Note: Text shadow, background and color have all been set within normalize. ::selection {} ::-moz-selection {}
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
compass-aurora-1.0.1 | templates/parmesan/_type.scss |
compass-aurora-1.0 | templates/parmesan/_type.scss |
compass-aurora-0.9.5 | templates/parmesan/_type.scss |