Stylament 0.25.1

Rather opinionated styling for the first nav. This is used in the layout example.

body > nav:first-of-type

scss
body > nav:first-of-type {
  & > menu {
    box-shadow: svar(shadow-sm);

    & > li {
      transition: all 0.3s svar(easing-default);

      &:hover {
        @include coloring.use-colors-inverse;
      }

      & > a {
        font-weight: svar(font-weight-emphasis);
      }
    }
  }
}

The first nav is implicitly considered the main navigation.