1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-07 13:06:47 +00:00
TiddlyWiki5/cssbuild/twitter-bootstrap/less/utilities.less
Jeremy Ruston f30a7cc61d Added Twitter Bootstrap source
We're going to build a custom version
2012-06-24 13:14:40 +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;
}