Stackedit/res/libs/bootstrap/less/utilities.less

43 lines
510 B
Plaintext
Raw Normal View History

2013-08-04 00:54:25 +00:00
//
// Utility classes
// --------------------------------------------------
// Floats
// -------------------------
.clearfix {
.clearfix();
}
.pull-right {
2013-08-14 23:44:51 +00:00
float: right !important;
2013-08-04 00:54:25 +00:00
}
.pull-left {
2013-08-14 23:44:51 +00:00
float: left !important;
2013-08-04 00:54:25 +00:00
}
// Toggling content
// -------------------------
.hide {
display: none !important;
}
.show {
display: block !important;
}
.invisible {
visibility: hidden;
}
.text-hide {
.hide-text();
}
// For Affix plugin
// -------------------------
.affix {
position: fixed;
}