Sha256: 789bd4a2a70c570f8c07c7d07f119bd84c0ec5ca1ac2cc0a2eede5bd7a5e4d77

Contents?: true

Size: 1.9 KB

Versions: 6

Compression:

Stored size: 1.9 KB

Contents

.breadcrumbs {

  font-size: 16px;

  ol {
    list-style-type: none;
    padding: 8px 8px 0;
    margin: 0;

    li {
      display: inline-block;

      &:first-child {
        background-image: none;
        margin-left: 0;
        padding-left: 0;
      }

      background-image: url('/images/separator.png');
      background-position: 0% 50%;
      background-repeat: no-repeat;
      margin-left: 1em;
      padding-left: 1.5em;
    }
  }

  a {
    color: $black;
    text-decoration: underline;

    &:visited {
      color: $black;
    }

    &:hover {
      color: black;
      text-decoration: none;
    }
  }
}

#global-header {

  ul {
    display: block;
    width: 100%;
    background-color: $grey-4;
    line-height: 48px;
    margin: 0 auto;
    border-bottom: 1px solid $grey-2;
    box-sizing: border-box;
    
    li{
        display: inline-block;
        padding: 0 32px;
        list-style: none;
        font-weight: bold;

        &:hover{
            cursor: pointer;
        }

        &:active, &.active{
            color: $primary;
            border-bottom: 2px solid $primary;
        }
    }
  }
}

#side-bar{
  position: fixed;
  left: 0;
  width: 280px;
  height: 100%;
  background-color: $grey-4; 
  border-right: 1px solid $grey-2; 
  box-sizing: border-box;
  // margin-top: -8px;

  ul {
    margin-top: 0;
    padding: 0;
    padding-top: 40px;

    li{
      list-style: none;
      padding-left: 40px;
      line-height: 40px;
      font-weight: bold;

      &:hover{
        cursor: pointer;
        background-color: $primary-lightest;
        text-decoration: underline;
      }

      &:active, &.active{
        color: $primary;
        border-left: 8px solid $primary;
        padding-left: 32px;
        background-color: $primary-lightest;
      }
    }
  }
  &+.container-fluid {
    padding-left: 312px;

    @media screen and (max-width: 1023px) {
      padding-left: 280px;
    }
  }
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
dvla_internal_frontend_toolkit-0.3.2 app/assets/stylesheets/elements/_navigation.scss
dvla_internal_frontend_toolkit-0.2.8 vendor/assets/stylesheets/elements/_navigation.scss
dvla_internal_frontend_toolkit-0.2.6 vendor/assets/stylesheets/elements/_navigation.scss
dvla_internal_frontend_toolkit-0.2.4 vendor/assets/stylesheets/elements/_navigation.scss
dvla_internal_frontend_toolkit-0.2.3 vendor/assets/stylesheets/elements/_navigation.scss
dvla_internal_frontend_toolkit-0.2.2 vendor/assets/stylesheets/elements/_navigation.scss