miniflux-legacy/themes/hello/scss/_alert.scss

47 lines
811 B
SCSS
Raw Normal View History

.alert {
padding: 5px 10px;
border: 1px solid $button-background-grey;
margin: 10px 0;
2015-01-20 01:20:29 +01:00
font-size: 1em;
&.alert-error {
2015-01-20 01:20:29 +01:00
background-color: $alert-error-background;
color: $alert-error-color;
}
&.alert-normal {
background-color: $theme-background-light;
border-width: 0px;
padding: {
top: 10px;
bottom: 10px;
}
h3 {
@extend %title;
}
ul {
list-style-type: square;
margin: 10px 40px;
}
}
&.alert-info {
2015-01-20 01:20:29 +01:00
background-color: $alert-info-background;
color: $alert-info-color;
}
&.alert-success {
2015-01-20 01:20:29 +01:00
background-color: $alert-success-background;
color: $alert-success-color;
border-color: darken($theme-background-highlight, 25%);
}
&#shortcuts {
li {
strong {
&:before {
content: " ' ";
}
&:after {
content: " ' ";
}
}
}
}
}