From dc2deb9a1b1995bbabee91bfd579d9b466fe78f2 Mon Sep 17 00:00:00 2001 From: Jacob Thornton Date: Thu, 26 Jan 2012 21:48:46 -0800 Subject: moving structure around + more work on builder... --- less/utilities.less | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 less/utilities.less (limited to 'less/utilities.less') diff --git a/less/utilities.less b/less/utilities.less new file mode 100644 index 000000000..d60d22031 --- /dev/null +++ b/less/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; +} -- cgit v1.2.3