Fork-Awesome/docs/assets/less/twbs-2.3.1/utilities.less
2013-04-02 11:48:06 -04:00

31 lines
335 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;
}
// For Affix plugin
.affix {
position: fixed;
}