Files
edx-platform/lms/static/sass/shared/_activation_messages.scss
Adam Butterworth 42cc0d0145 Fix all stylelint errors (#23920)
* 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
2020-05-06 16:07:14 -04:00

31 lines
542 B
SCSS

.container.activation {
padding: ($baseline*3) 0 ($baseline*6);
h1 {
margin-bottom: $baseline;
padding: ($baseline/2);
&.invalid {
@extend %error-message-colors;
}
&.valid {
@extend %success-message-colors;
}
}
h1 + hr {
margin-bottom: ($baseline*1.5);
}
.message {
background: rgb(252, 252, 252);
border: 1px solid rgb(200, 200, 200);
box-shadow: 0 3px 20px 0 $shadow;
border-radius: 4px;
margin: 0 auto;
padding: ($baseline*2);
width: flex-grid(6);
}
}