comparison static/bootstrap/less/utilities.less @ 61:130eccd396d8

Now using Boostrap with LESS.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 06 Feb 2013 08:22:31 -0800
parents
children d29e2f337b00
comparison
equal deleted inserted replaced
60:8250c977bc50 61:130eccd396d8
1 //
2 // Utility classes
3 // --------------------------------------------------
4
5
6 // Quick floats
7 .pull-right {
8 float: right;
9 }
10 .pull-left {
11 float: left;
12 }
13
14 // Toggling content
15 .hide {
16 display: none;
17 }
18 .show {
19 display: block;
20 }
21
22 // Visibility
23 .invisible {
24 visibility: hidden;
25 }
26
27 // For Affix plugin
28 .affix {
29 position: fixed;
30 }