sass-site/source/assets/sass/components/_alerts.scss
Jonny Gerig Meyer 29d77ce08a
Add prettier
2023-01-09 14:10:02 -05:00

49 lines
779 B
SCSS

.sl-c-alert {
padding: {
top: sl-px-to-rem(12px);
bottom: sl-px-to-rem(12px);
}
text-align: center;
background: darken($sl-color--hopbush, 10%);
color: $sl-color--white;
font-size: $sl-font-size--small;
p,
ul,
dl {
&:first-child {
margin-top: 0;
}
&:last-child {
margin-bottom: 0;
}
}
p,
li,
dd {
max-width: none;
}
a {
border-bottom-color: rgba($sl-color--white, 0.5);
font-weight: $sl-font-weight--bold;
color: $sl-color--white;
&:hover,
&:focus {
border-bottom-color: rgba($sl-color--white, 0.75);
background: rgba(black, 0.0625);
}
&:active {
border-bottom-color: $sl-color--white;
}
}
&--info {
background: $sl-color--midnight-blue;
}
}