Files
edx-platform/lms/static/sass/shared-v2/_base.scss
2016-06-24 12:50:33 -04:00

25 lines
410 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 {
width: span(12);
margin: 0 auto;
@media print {
padding-bottom: 0;
}
}
// Support .sr as well as .sr-only for backward compatibility
.sr {
@extend .sr-only;
}