Files
GitList/web/less/utilities.less
Klaus Silveira df43c987cf Initial commit
2012-05-18 01:38:33 -03:00

31 lines
323 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;
}
.space-right {
padding: 0 8px 0 0;
}
.space-left {
padding: 0 0 0 8px;
}