Sha256: 92857064a82fdcbe0d7d24cf7eef6bd398eaa15b615db9d29d450498a5009dbb

Contents?: true

Size: 1.18 KB

Versions: 20

Compression:

Stored size: 1.18 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: 54px;
  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); }

    &.primary {
      &:hover,
      &.active,
      &:active,
      &:focus {
        background: darkish-color(primary);
        color: color(white);
      }
    }

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

  &.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

20 entries across 20 versions & 1 rubygems

Version Path
active_frontend-15.0.23 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.22 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.21 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.20 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.19 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.18 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.17 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.16 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.15 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.14 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.13 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.12 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.11 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.10 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.9 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.8 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.7 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.6 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.5 vendor/assets/stylesheets/components/_navbar.scss
active_frontend-15.0.4 vendor/assets/stylesheets/components/_navbar.scss