The markup of this demo is also identical with the default markup. This navbar layout shares some mixins with the Left Navbar and the Left Menu, but also has its own special mixin as we'll see in a second.
// navbar-right.scss - mixins
@include navbar-mobile-layout;
@include navbar-desktop-side-layout; // special column navbar layout mixin
@include navbar-style;
@include nav-layout;
@include nav-style;
@include subnav-style;
@include right-side; // special position and animation mixin
navbar-mobile-layout
sets the mobile view of the navbar, just like for the default layout;navbar-desktop-side-layout
sets the special column layout of the navbar for desktop
view; this mixin is shared with the left navbar;navbar-style
applies colors and background colors for the navbar and various;nav-layout
sets the menu layout for all menu tree, just as usual;nav-style
applies the root menu item colors and background colors;subnav-style
applies the submenu background, box-shadow and submenu item colors and background
colors;right-side
this sets the position of submenu and animations accordingly for the RIGHT
column.// right.html - custom CSS variable values
.navbar {
--n-primary-color: #8032cd;
--n-bg: #463654;
--n-root-item-hover-color: #fff;
--n-root-item-hover-bg: #251038;
--n-item-active-bg: var(--n-primary-color);
--n-subnav-bg: #eee;
--n-subnav-item-active-bg: var(--n-primary-color);
--n-subnav-item-hover-bg: #2d1344;
--n-subnav-item-hover-color: #eee;
--n-subnav-padding-x: .5rem;
--n-subnav-padding-y: .5rem;
--n-subnav-larger-width: calc(var(--n-subnav-width) * 3 + var(--n-subnav-padding-x) * 2);
--n-subnav-shadow: -2px 2px 3px 2px rgba(0,0,0,.3), -1px 1px 0 0 rgba(0,0,0,.2) inset;
}
Again we are easily customizing the CSS variables for our RIGHT Navbar instance for active menu items, background-colors, some spacing and the mega menu width.
At this point you might want to see a combined use of the navbar mixins, as well as a quick guide on how to extend these mixins.