* 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
31 lines
605 B
SCSS
31 lines
605 B
SCSS
// First purchase offer banner
|
|
.first-purchase-offer-banner {
|
|
background-color: #dee3f1;
|
|
font-size: 16px;
|
|
border-radius: 7px;
|
|
padding: 20px;
|
|
margin: 20px auto;
|
|
box-sizing: border-box;
|
|
line-height: 1.5;
|
|
|
|
.first-purchase-offer-banner-bold {
|
|
font-weight: bold;
|
|
color: #393f43;
|
|
}
|
|
|
|
a {
|
|
color: #23419f !important;
|
|
text-decoration: underline !important;
|
|
font-weight: bold !important;
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
#seq_content .first-purchase-offer-banner {
|
|
max-width: $text-width-readability-max;
|
|
}
|
|
|
|
body.view-in-mfe .first-purchase-offer-banner {
|
|
display: none;
|
|
}
|