_navigation.scss 465 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
// LMS navigation styles

// skip navigation
.nav-skip {
    font-size: font-size(small);
    display: inline-block;
    position: absolute;
    left: 0;
    top: -($baseline*30);
    overflow: hidden;
    background: $white;
12
    border-bottom: 1px solid $lms-border-color;
13 14 15 16 17 18 19 20 21 22 23
    padding: ($baseline*0.75) ($baseline/2);

    &:focus,
    &:active {
        position: relative;
        top: auto;
        width: auto;
        height: auto;
        margin: 0;
    }
}