styles
Version:
Compile your LESS stylesheets using JSON and underscore.
41 lines (30 loc) • 500 B
text/less
//
// Utility classes
// --------------------------------------------------
// Floats
// -------------------------
.pull-right {
float: right;
}
.pull-left {
float: left;
}
// Toggling content
// -------------------------
.hide {
display: none ;
}
.show {
display: block ;
}
.invisible {
visibility: hidden;
}
.text-hide {
.hide-text();
}
// For Affix plugin
// -------------------------
.affix {
position: fixed;
}