Sha256: 6acb3b650ed3148fe184d51984f7831ff81bed4d4f8f46e4c846964d792f2c63

Contents?: true

Size: 1.19 KB

Versions: 118

Compression:

Stored size: 1.19 KB

Contents

// Table of Contents
// ==================================================
// Navbar
// Media Queries

// scss-lint:disable NestingDepth

// Navbar
// ==================================================
.navbar {
  background: color(white);
  border-collapse: separate;
  border-top: 1px solid color(dark-haze);
  box-sizing: border-box;
  display: table;
  height: 50px;
  line-height: 1;
  table-layout: fixed;
  width: 100%;

  > a {
    display: table-cell;
    float: none;
    font-size: text-size(xxs);
    font-weight: text-weight(semibold);
    text-align: center;
    vertical-align: middle;
    width: 1%;

    &:hover,
    &.active,
    &:active,
    &:focus { color: color(primary); }

    > i {
      font-size: text-size(l);
      display: block;
      margin-bottom: 3px;
    }
  }

  &.primary {
    > a {
      &:hover,
      &.active,
      &:active,
      &:focus {
        background: darkish-color(primary);
        color: color(white);
      }
    }
  }
  &.fixed {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 1040;
  }
}

// Media Queries
// ==================================================
@media only screen and (min-width: 768px) {
  .navbar { display: none; }
}

Version data entries

118 entries across 118 versions & 1 rubygems

Version Path
active_frontend-14.2.4 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.2.3 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.2.2 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.2.1 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.2.0 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.1.41 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.1.40 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.1.39 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.1.38 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.1.37 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.1.36 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.1.35 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.1.34 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.1.33 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.1.32 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.1.31 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.1.30 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.1.29 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.1.28 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-14.1.27 vendor/assets/stylesheets/components/_navbar.scss