* Fix all stylelint errors For any errors that fixing would require changing the output of the css disable stylelint for that line instead of modifying. * Update quality.py Make stylelint quality check pass when there are no errors * Delete empty selectors
55 lines
944 B
SCSS
55 lines
944 B
SCSS
@import 'neat/neat'; // lib - Neat
|
|
|
|
.oauth2 {
|
|
@include outer-container();
|
|
|
|
.authorization-confirmation {
|
|
@include span-columns(6);
|
|
@include shift(3);
|
|
|
|
float: unset !important; // fixes issues with oauth page and edx-theme footer
|
|
line-height: 1.5em;
|
|
padding: 50px 0;
|
|
}
|
|
}
|
|
|
|
// For the django-oauth-toolkit Authorization view
|
|
.wrapper-authorize {
|
|
background: $white;
|
|
padding-right: $baseline/2;
|
|
padding-left: $baseline/2;
|
|
font-family: $font-family-sans-serif;
|
|
|
|
h1 {
|
|
@extend %t-title4;
|
|
|
|
margin-bottom: 0;
|
|
margin-left: 0;
|
|
padding: $baseline;
|
|
padding-left: 0;
|
|
|
|
@include text-align(left);
|
|
}
|
|
|
|
p {
|
|
@extend %t-copy-base;
|
|
|
|
margin: $baseline/2 0;
|
|
}
|
|
|
|
.control-group {
|
|
float: right;
|
|
}
|
|
|
|
.btn-authorization-allow {
|
|
@extend %btn-primary-blue;
|
|
|
|
margin-left: 20px;
|
|
line-height: 0.7em;
|
|
}
|
|
|
|
.btn-authorization-cancel {
|
|
@extend %btn-secondary-blue-outline;
|
|
}
|
|
}
|