diff options
| author | Mark Otto <[email protected]> | 2012-01-08 15:38:57 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-01-08 15:38:57 -0800 |
| commit | eaa8220d70f84a710c9dfa1bd49a7c35bcab1a3b (patch) | |
| tree | eb0e7c8b99dc3cbb14797580fbbf5b0ea7cf7a05 /lib/utilities.less | |
| parent | e654ec13369761e252aa279d5e0a1002ba23cfb7 (diff) | |
| download | bootstrap-eaa8220d70f84a710c9dfa1bd49a7c35bcab1a3b.tar.xz bootstrap-eaa8220d70f84a710c9dfa1bd49a7c35bcab1a3b.zip | |
add utilities.less file for generic classes
Diffstat (limited to 'lib/utilities.less')
| -rw-r--r-- | lib/utilities.less | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/utilities.less b/lib/utilities.less new file mode 100644 index 000000000..d60d22031 --- /dev/null +++ b/lib/utilities.less @@ -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; +} |
