Fork-Awesome/docs/assets/less/tw-bs-201/utilities.less
2012-03-09 09:45:33 +01:00

24 lines
245 B
Plaintext
Executable file

// UTILITY CLASSES
// ---------------
// Quick floats
.pull-right {
float: right;
}
.pull-left {
float: left;
}
// Toggling content
.hide {
display: none;
}
.show {
display: block;
}
// Visibility
.invisible {
visibility: hidden;
}