diff --git a/lms/static/sass/bootstrap/lms-main-bootstrap.scss b/lms/static/sass/bootstrap/lms-main-bootstrap.scss
new file mode 100644
index 0000000000..b4fefe9ea9
--- /dev/null
+++ b/lms/static/sass/bootstrap/lms-main-bootstrap.scss
@@ -0,0 +1,7 @@
+// -----------------------------
+// LMS main styles for Bootstrap
+// -----------------------------
+
+// Bootstrap theme
+@import 'edx-bootstrap/sass/open-edx/theme';
+@import 'bootstrap/scss/bootstrap';
diff --git a/lms/templates/main.html b/lms/templates/main.html
index cb1ed90d6a..b6526ae951 100644
--- a/lms/templates/main.html
+++ b/lms/templates/main.html
@@ -61,7 +61,11 @@ from pipeline_mako import render_require_js_path_overrides
<%static:css group='style-vendor'/>
- <%static:css group='${self.attr.main_css}'/>
+ % if uses_bootstrap:
+
+ % else:
+ <%static:css group='${self.attr.main_css}'/>
+ % endif
% if not uses_pattern_library:
% if disable_courseware_js:
@@ -78,6 +82,11 @@ from pipeline_mako import render_require_js_path_overrides
<%static:js group='base_application'/>
% endif
+ % if uses_bootstrap:
+
+
+ % endif
+