mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
27 lines
379 B
Plaintext
27 lines
379 B
Plaintext
//
|
|
// 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;
|
|
}
|