bootstrap/less/utilities.less

30 lines
409 B
Plaintext
Raw Normal View History

2012-06-29 12:46:45 +08:00
//
// Utility classes
// --------------------------------------------------
// Quick floats
.pull-right {
float: right;
}
.pull-left {
float: left;
}
// Toggling content
// Uses `!important` for proper specifity over things like form controls
.hide {
display: none !important;
}
.show {
display: block !important;
}
// Visibility
.invisible {
visibility: hidden;
}
2012-07-23 09:28:39 +08:00
.affix {
position: fixed;
}