Files
edx-platform/lms/static/sass/shared-v2/_base.scss
2017-10-29 22:22:08 -04:00

27 lines
389 B
SCSS

// LMS base styles
// removing the outline on any element that we make programmatically focusable
[tabindex="-1"] {
outline: none;
}
.window-wrap {
background-color: $body-bg;
}
.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;
}