2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Utility classes
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-08 18:38:57 -05:00
|
|
|
|
2012-09-26 11:59:57 -04:00
|
|
|
// Floats
|
|
|
|
// -------------------------
|
|
|
|
|
2012-12-19 20:49:20 -05:00
|
|
|
.clearfix {
|
|
|
|
.clear_float();
|
2012-09-26 11:59:57 -04:00
|
|
|
}
|
2012-01-08 18:38:57 -05:00
|
|
|
.pull-right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.pull-left {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2012-09-26 11:59:57 -04:00
|
|
|
|
2012-01-08 18:38:57 -05:00
|
|
|
// Toggling content
|
2012-09-26 11:59:57 -04:00
|
|
|
// -------------------------
|
|
|
|
|
2012-01-08 18:38:57 -05:00
|
|
|
.hide {
|
2012-12-20 16:53:38 -05:00
|
|
|
display: none !important;
|
2012-01-08 18:38:57 -05:00
|
|
|
}
|
|
|
|
.show {
|
2012-12-20 16:53:38 -05:00
|
|
|
display: block !important;
|
2012-01-08 18:38:57 -05:00
|
|
|
}
|
|
|
|
.invisible {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2012-09-26 11:59:57 -04:00
|
|
|
.text-hide {
|
|
|
|
.hide-text();
|
|
|
|
}
|
|
|
|
|
2012-07-22 21:28:39 -04:00
|
|
|
|
2012-08-20 00:12:52 -04:00
|
|
|
// For Affix plugin
|
2012-09-26 11:59:57 -04:00
|
|
|
// -------------------------
|
|
|
|
|
2012-07-22 21:28:39 -04:00
|
|
|
.affix {
|
|
|
|
position: fixed;
|
2012-08-20 00:12:52 -04:00
|
|
|
}
|