Sha256: 9ffe04f613ea5a177784d6e639657b62ea1390e77ca91ac59026cbbe0b68147b
Contents?: true
Size: 1.57 KB
Versions: 1
Compression:
Stored size: 1.57 KB
Contents
// ------------------------------------------------------------------- // // Kentucky Helper Extensions // ------------------------------------------------------------------- // // Show / Hide Elements // To be used in jQuery // ------------------------------------------------------------------- // .is-shown{ display: block; } .is-hidden{ display: none; } // ------------------------------------------------------------------- // // Add / Remove Floats // ------------------------------------------------------------------- // %float-left{ float: left; } %float-right{ float: right; } %float-none{ float: none; } // ------------------------------------------------------------------- // // Text Alignment // ------------------------------------------------------------------- // %text-left{ text-align: left; } %text-right{ text-align: right; } %text-center{ text-align: center; } // ------------------------------------------------------------------- // // Muted // ------------------------------------------------------------------- // %muted{ opacity: .5; filter: alpha(opacity=50); } // ------------------------------------------------------------------- // // "Go" - Add right-facing arrow, indicating movement through site // ------------------------------------------------------------------- // %go:after{ content: "\00A0" "\OOBB"; } // ------------------------------------------------------------------- // // Caps Lock - Calm down there, champ... // ------------------------------------------------------------------- // %caps{ text-transform: uppercase; }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kentucky-0.3.0 | app/assets/stylesheets/kentucky/generic/_helpers.scss |