middleman/middleman-core/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_utilities.less

24 lines
245 B
Plaintext
Raw Normal View History

// UTILITY CLASSES
// ---------------
// Quick floats
.pull-right {
float: right;
}
.pull-left {
float: left;
}
// Toggling content
.hide {
display: none;
}
.show {
display: block;
}
// Visibility
.invisible {
visibility: hidden;
}