2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Utility classes
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-08 18:38:57 -05:00
|
|
|
|
|
|
|
// Quick floats
|
|
|
|
.pull-right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.pull-left {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Toggling content
|
|
|
|
.hide {
|
2012-07-24 03:35:54 -04:00
|
|
|
display: none;
|
2012-01-08 18:38:57 -05:00
|
|
|
}
|
|
|
|
.show {
|
2012-07-24 03:35:54 -04:00
|
|
|
display: block;
|
2012-01-08 18:38:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Visibility
|
|
|
|
.invisible {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2012-07-22 21:28:39 -04:00
|
|
|
|
2012-08-20 00:12:52 -04:00
|
|
|
// For Affix plugin
|
2012-07-22 21:28:39 -04:00
|
|
|
.affix {
|
|
|
|
position: fixed;
|
2012-08-20 00:12:52 -04:00
|
|
|
}
|