Files
edx-platform/lms/static/sass/shared-v2/_base.scss
2017-03-03 09:50:54 -05:00

26 lines
419 B
SCSS

// LMS base styles
// removing the outline on any element that we make programmatically focusable
[tabindex="-1"] {
outline: none;
}
.window-wrap {
background-color: $lms-background-color;
}
.content-wrapper {
@include span(12, none);
margin: 0 auto;
@media print {
padding-bottom: 0;
}
}
// Support .sr as well as .sr-only for backward compatibility
.sr {
@extend .sr-only;
}