2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-08 17:22:31 +03:00

add utilities.less file for generic classes

This commit is contained in:
Mark Otto
2012-01-08 15:38:57 -08:00
parent e654ec1336
commit eaa8220d70
5 changed files with 47 additions and 33 deletions
+23
View File
@@ -0,0 +1,23 @@
// UTILITY CLASSES
// ---------------
// Quick floats
.pull-right {
float: right;
}
.pull-left {
float: left;
}
// Toggling content
.hide {
display: none;
}
.show {
display: block;
}
// Visibility
.invisible {
visibility: hidden;
}