LEARNER-1785 This story was to update the existing custom themes to work with the flexible bootstrap design. It also updates the red theme to more closely resemble the real implementation on openedx.
66 lines
1.1 KiB
SCSS
66 lines
1.1 KiB
SCSS
// Open edX: LMS footer
|
|
// ====================
|
|
|
|
.wrapper-footer {
|
|
box-shadow: 0 -1px 5px 0 $black-t0;
|
|
border-top: 1px solid $navbar-light-disabled-color;
|
|
background-color: $footer-bg;
|
|
margin-top: $baseline/2;
|
|
padding: $baseline;
|
|
font-family: $font-family-sans-serif;
|
|
|
|
footer {
|
|
max-width: $lms-max-width;
|
|
margin: 0 auto;
|
|
|
|
.site-nav {
|
|
padding: 0;
|
|
|
|
.nav-item {
|
|
margin-right: $baseline;
|
|
|
|
.nav-link {
|
|
text-decoration: none;
|
|
padding: 0;
|
|
color: $brand-inverse;
|
|
|
|
&:hover {
|
|
color: $brand-primary;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.legal-nav {
|
|
padding: 0;
|
|
|
|
.nav-item {
|
|
.nav-link {
|
|
text-decoration: none;
|
|
padding: 0;
|
|
margin-right: $baseline/4;
|
|
font-size: $font-size-sm;
|
|
}
|
|
}
|
|
|
|
li:not(:first-child) a:before {
|
|
content: "- ";
|
|
}
|
|
}
|
|
|
|
footer-language-selector {
|
|
margin: $baseline 0;
|
|
}
|
|
|
|
.copyright {
|
|
margin-top: $baseline;
|
|
font-size: $font-size-xs;
|
|
color: $gray-dark;
|
|
}
|
|
|
|
.footer-about-openedx {
|
|
float: right;
|
|
}
|
|
}
|
|
}
|