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