30 lines
992 B
Mako
30 lines
992 B
Mako
// lms - css application architecture
|
|
// ====================
|
|
|
|
// libs and resets *do not edit*
|
|
@import 'bourbon/bourbon'; // lib - bourbon
|
|
@import 'vendor/bi-app/bi-app-ltr'; // set the layout for left to right languages
|
|
|
|
// BASE *default edX offerings*
|
|
// ====================
|
|
|
|
// base - utilities
|
|
@import 'base/reset';
|
|
@import 'base/variables';
|
|
@import 'base/mixins';
|
|
|
|
## THEMING
|
|
## -------
|
|
## Set up this file to import an edX theme library if the environment
|
|
## indicates that a theme should be used. The assumption is that the
|
|
## theme resides outside of this main edX repository, in a directory
|
|
## called themes/<theme-name>/, with its base Sass file in
|
|
## themes/<theme-name>/static/sass/_<theme-name>.scss. That one entry
|
|
## point can be used to @import in as many other things as needed.
|
|
% if env["FEATURES"].get("USE_CUSTOM_THEME", False):
|
|
// import theme's Sass overrides
|
|
@import '${env.get('THEME_NAME')}';
|
|
% endif
|
|
|
|
@import 'build-lms'; // shared app style assets/rendering
|
|
|