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
|
2012-07-13 14:43:51 -07:00
|
|
|
// Uses `!important` for proper specifity over things like form controls
|
2012-01-08 15:38:57 -08:00
|
|
|
.hide {
|
2012-07-13 14:43:51 -07:00
|
|
|
display: none !important;
|
2012-01-08 15:38:57 -08:00
|
|
|
}
|
|
|
|
.show {
|
2012-07-13 14:43:51 -07:00
|
|
|
display: block !important;
|
2012-01-08 15:38:57 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Visibility
|
|
|
|
.invisible {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2012-07-22 18:28:39 -07:00
|
|
|
|
|
|
|
.affix {
|
|
|
|
position: fixed;
|
|
|
|
}
|