{{#markdown}} ```scss $include-html-top-bar-classes: $include-html-classes; /* Background color for the top bar */ $topbar-bg: #111; /* Height and margin */ $topbar-height: 45px; $topbar-margin-bottom: rem-calc(30); /* Control Input height for top bar */ $topbar-input-height: 2.45em; /* Controlling the styles for the title in the top bar */ $topbar-title-weight: bold; $topbar-title-font-size: rem-calc(17); /* Style the top bar dropdown elements */ $topbar-dropdown-bg: #222; $topbar-dropdown-link-color: #fff; $topbar-dropdown-link-bg: lighten($topbar-bg, 5%); $topbar-dropdown-toggle-size: 5px; $topbar-dropdown-toggle-color: #fff; $topbar-dropdown-toggle-alpha: 0.5; /* Set the link colors and styles for top-level nav */ $topbar-link-color: #fff; $topbar-link-color-hover: #fff; $topbar-link-color-active: #fff; $topbar-link-weight: bold; $topbar-link-font-size: rem-calc(13); $topbar-link-hover-lightness: -30%; /* Darken by 30% */ $topbar-link-bg-hover: darken($topbar-bg, 3%); $topbar-link-bg-active: darken($topbar-bg, 3%); $topbar-dropdown-label-color: #555; $topbar-dropdown-label-text-transform: uppercase; $topbar-dropdown-label-font-weight: bold; $topbar-dropdown-label-font-size: rem-calc(10); /* Top menu icon styles */ $topbar-menu-link-transform: uppercase; $topbar-menu-link-font-size: rem-calc(13); $topbar-menu-link-weight: bold; $topbar-menu-link-color: #fff; $topbar-menu-icon-color: #fff; $topbar-menu-link-color-toggled: #888; $topbar-menu-icon-color-toggled: #888; /* Transitions and breakpoint styles */ $topbar-transition-speed: 300ms; $topbar-breakpoint: rem-calc(940); /* Change to 9999px for always mobile layout */ $topbar-media-query: "only screen and (min-width: #{$topbar-breakpoint})"; /* Divider Styles */ $topbar-divider-border-bottom: solid 1px lighten($topbar-bg, 10%); $topbar-divider-border-top: solid 1px darken($topbar-bg, 10%); /* Sticky Class */ $topbar-sticky-class: ".sticky"; $topbar-arrows: true; //Set false to remove the triangle icon from the menu item ``` {{/markdown}}