Sha256: db0c91556061eb6c29bf43428cde966f3f12fece02e4e0ac0a3044a77491cae8

Contents?: true

Size: 823 Bytes

Versions: 2

Compression:

Stored size: 823 Bytes

Contents

/* --------------------------------------------------------------------------------
 * 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;
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
elements-0.2.1 app/assets/stylesheets/elements/helpers.css.scss
elements-0.2.0 app/assets/stylesheets/elements/helpers.css.scss