Sha256: 899704943b7d55beb0f83acb5e0cac9ae149fff09d4e038922d7bb21a6d1ee4e

Contents?: true

Size: 1.83 KB

Versions: 4

Compression:

Stored size: 1.83 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;
}

//
// DISABLED
//

.rf-u-disabled,
%rf-u-disabled {
  cursor: not-allowed;
  opacity: .3;
}


//
// 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

4 entries across 4 versions & 1 rubygems

Version Path
ethosstyles-0.1.19 app/assets/stylesheets/utilities/_utilities.scss
ethosstyles-0.1.18 app/assets/stylesheets/utilities/_utilities.scss
ethosstyles-0.1.17 app/assets/stylesheets/utilities/_utilities.scss
ethosstyles-0.1.16 app/assets/stylesheets/utilities/_utilities.scss