symposion_app/symposion_project/static/bootstrap/less/utilities.less

31 lines
335 B
Text
Raw Normal View History

//
// Utility classes
// --------------------------------------------------
2012-07-19 06:52:11 +00:00
// 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;
}