47 lines
811 B
SCSS
Executable File
47 lines
811 B
SCSS
Executable File
.alert {
|
|
padding: 5px 10px;
|
|
border: 1px solid $button-background-grey;
|
|
margin: 10px 0;
|
|
font-size: 1em;
|
|
|
|
&.alert-error {
|
|
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 {
|
|
background-color: $alert-info-background;
|
|
color: $alert-info-color;
|
|
}
|
|
&.alert-success {
|
|
background-color: $alert-success-background;
|
|
color: $alert-success-color;
|
|
border-color: darken($theme-background-highlight, 25%);
|
|
}
|
|
&#shortcuts {
|
|
li {
|
|
strong {
|
|
&:before {
|
|
content: " ' ";
|
|
}
|
|
&:after {
|
|
content: " ' ";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |