middleman/middleman-core/fixtures/twitter-bootstrap-app/source/twitter-bootstrap-ebc6935/less/_utilities.less
2013-05-09 14:41:26 -07:00

24 lines
245 B
Plaintext
Executable file

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