Sha256: 09434e431c1b98ca3fef033b2ea8140f6dae1048f1694874105b49577ee9ebf5
Contents?: true
Size: 1.74 KB
Versions: 8
Compression:
Stored size: 1.74 KB
Contents
// // TEXT // .rf-u-textleft { text-align: left; } .rf-u-textright { text-align: right; } .rf-u-textcenter { text-align: center!important; } .rf-u-unbold { font-weight: normal !important; } .rf-u-caps { text-transform: uppercase; } .rf-u-truncate { @include truncate; } .rf-u-text-minor { color: $stormy; font-size: inherit; font-style: italic; font-weight: normal; } // // POSITIONING // .rf-u-pullleft { float: left; } .rf-u-pullright { float: right; } .rf-u-block { display: block !important; } .rf-u-inline { display: inline-block !important; } .rf-u-clearfix { &:before, &:after { content: " "; display: table; } &:after { clear: both; } } // // COLORS // .rf-u-color--slate { color: $slate !important; } // // STATUSES // .rf-u-success { color: $green !important; } .rf-u-fail { color: $red !important; } // // SHOW/HIDE // .rf-hide { display: none !important; } .rf-show { display: block !important; } // // SPACING // based off of Bootstrap naming https://v4-alpha.getbootstrap.com/utilities/spacing/#horizontal-centering // // Padding // todo: remove duplicate format .rf-u-p-0, .rf-u-p0 { padding: 0; } .rf-u-p { padding: 10px; } .rf-u-p-l, .rf-u-pl { padding-left: 10px; } .rf-u-p-r, .rf-u-pr { padding-right: 10px; } .rf-u-pb { padding-bottom: 10px; } .rf-u-p-y, .rf-u-py { padding-top: 10px; padding-bottom: 10px; } .rf-u-p-x, .rf-u-px { padding-left: 10px; padding-right: 10px; } // Margin // todo: remove duplicate format .rf-u-m { margin: 10px; } .rf-u-m-b, .rf-u-mb { margin-bottom: 10px; } .rf-u-m-y, .rf-u-my { margin-bottom: 10px; margin-top: 10px; } .rf-u-m-t, .rf-u-mt { margin-top: 10px; } .rf-u-mb0 { margin-bottom: 0; }
Version data entries
8 entries across 8 versions & 1 rubygems