1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/less/utilities.less

26 lines
379 B
Text

//
// 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;
}