You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
720 B
44 lines
720 B
/*!
|
|
* Yamm!3
|
|
* Yet another megamenu for Bootstrap 3
|
|
*
|
|
* http://geedmo.github.com/yamm3
|
|
*/
|
|
|
|
//-----------------------------
|
|
// Yamm Styles
|
|
//-----------------------------
|
|
|
|
.yamm {
|
|
|
|
// reset positions
|
|
.nav, .collapse, .dropup, .dropdown {
|
|
position: static;
|
|
}
|
|
|
|
// propagate menu position under container for fw navbars
|
|
.container {
|
|
position: relative;
|
|
}
|
|
|
|
// by default aligns menu to left
|
|
.dropdown-menu {
|
|
left: auto;
|
|
}
|
|
// ensure a good position
|
|
.nav.navbar-right .dropdown-menu {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
// Content with padding
|
|
.yamm-content {
|
|
padding: 20px 30px;
|
|
}
|
|
|
|
// Fullwidth menu
|
|
.dropdown.yamm-fw .dropdown-menu {
|
|
left: 0; right: 0;
|
|
}
|
|
|
|
}
|
|
|