_base.scss 418 Bytes
Newer Older
1 2
// LMS base styles

3 4 5 6 7
// removing the outline on any element that we make programmatically focusable
[tabindex="-1"] {
    outline: none;
}

8 9 10 11
.window-wrap {
    background-color: $lms-background-color;
}

12
.content-wrapper {
13
    @include span(12, none);
14 15 16 17 18 19
    margin: 0 auto;

    @media print {
        padding-bottom: 0;
    }
}
20

21 22 23
// Support .sr as well as .sr-only for backward compatibility
.sr {
    @extend .sr-only;
24
}