/* -------------------------------------------------------------------------------- * Elements - Rails Starting Base * * helpers.css.scss * * Helpers methods to assist in writing clean and concise css * * @author : Jais Cheema * -----------------------------------------------------------------------------------*/ .hidden { display:none; } .clear-left { clear:left; } .clear-right { clear:right; } .clear { clear:both; } .imp { color: #ff9900; } .imp2 { color: #999; } .center { text-align:center; } .orange { background-color: #ff9900; } .gray { background-color: #999; } .f_left { float:left; } .f_right { float:right; } .t_right { text-align:right; } @mixin padded($value) { padding-top:$value; padding-bottom:$value; }