Skip to content
Snippets Groups Projects
_sidebar-menu.scss 782 B
Newer Older
@import "helpers/mixins";
@import "helpers/variables";
@import "helpers/functions";

#block-mainnavigation-2 {

  .navbar-nav {

    li {
      border-top: 1px #979797 dotted;

      a {
        display: inline;
      }

    }

    ul {
      display: inherit;
      position: inherit;
      background: transparent;
      border: none;
      box-shadow: none;
      padding: 0;
      list-style-type: none;

      li {

        a {
          color: $black-base;
          padding: 5px 5px 5px 35px;
        }
      }
    }


    i {
      float: right;
      margin-top: 8px;
    }

    &:nth-last-child(1) {
      border-bottom: 1px #979797 dotted;
      border-top: none;
    }

  }

  .navbar-nav > li > a {
    padding-top: 5px;
    padding-bottom: 5px;
    float: left;
  }
}