Interim commit.
[yaffs-website] / vendor / geedmo / yamm3 / yamm / yamm.less
1 /*!
2  * Yamm!3 - Yet another megamenu for Bootstrap 3
3  * http://geedmo.github.com/yamm3
4  * 
5  * @geedmo - Licensed under the MIT license
6  */
7
8 //-----------------------------
9 //  Yamm Styles
10 //-----------------------------
11
12 .yamm {
13
14   // reset positions 
15   .nav, .collapse, .dropup, .dropdown {
16     position: static;
17   }  
18
19   // propagate menu position under container for fw navbars
20   .container {
21     position: relative;
22   }
23
24   // by default aligns menu to left
25   .dropdown-menu {
26     left: auto;
27   }
28   
29   // Content with padding 
30   .yamm-content {
31     padding: 20px 30px;
32   }
33
34   // Fullwidth menu
35   .dropdown.yamm-fw .dropdown-menu {
36     left: 0; right: 0;
37   }
38
39 }