summaryrefslogtreecommitdiffstats
path: root/css/bootstrap/utilities.less
diff options
context:
space:
mode:
Diffstat (limited to 'css/bootstrap/utilities.less')
-rw-r--r--css/bootstrap/utilities.less30
1 files changed, 30 insertions, 0 deletions
diff --git a/css/bootstrap/utilities.less b/css/bootstrap/utilities.less
new file mode 100644
index 0000000..314b4ff
--- /dev/null
+++ b/css/bootstrap/utilities.less
@@ -0,0 +1,30 @@
+//
+// Utility classes
+// --------------------------------------------------
+
+
+// Quick floats
+.pull-right {
+ float: right;
+}
+.pull-left {
+ float: left;
+}
+
+// Toggling content
+.hide {
+ display: none;
+}
+.show {
+ display: block;
+}
+
+// Visibility
+.invisible {
+ visibility: hidden;
+}
+
+// For Affix plugin
+.affix {
+ position: fixed;
+}