Pony.fm/resources/assets/styles/base/bootstrap/utilities.less

31 lines
335 B
Text
Raw Normal View History

2015-09-12 13:19:18 +02:00
//
// 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;
}