_navigation.scss 660 Bytes
Newer Older
1 2 3 4
// LMS navigation styles

// skip navigation
.nav-skip {
5 6 7 8 9 10 11
  font-size: font-size(small);
  display: inline-block;
  position: absolute;
  left: 0;
  top: -($baseline*30);
  overflow: hidden;
  background: $white;
12
  border-bottom: 1px solid $border-color;
13
  padding: ($baseline*0.75) ($baseline/2);
14

15 16
  &:focus,
  &:active {
17 18 19 20 21 22 23 24 25 26 27 28 29 30
    @include left(50%);
    @include margin-left(-6.5em)
    margin-top: 0;
    padding: 10px 0.5em;
    text-align: center;
    position: absolute;
    width: 12em;
    z-index: 1050;
    top: 0;
    background-color: $black !important;
    opacity: 0.8;
    color: $white !important;
    text-decoration: none;
    outline: none;
31
  }
32
}