argos/dmp-frontend/src/styles.scss

32 lines
757 B
SCSS
Raw Normal View History

2018-11-27 18:33:17 +01:00
@import "~@angular/material/prebuilt-themes/indigo-pink.css";
@import "~bootstrap/scss/bootstrap";
//Material-Bootstrap configuration
@import "assets/scss/bootstrap-material";
2018-06-27 17:37:26 +02:00
2017-12-18 11:01:22 +01:00
@import '~@angular/material/theming';
@import '~@covalent/core/theming/all-theme';
2017-12-18 12:24:12 +01:00
@include mat-core();
// Define a theme.
$primary: mat-palette($mat-indigo);
2018-06-27 17:37:26 +02:00
$accent : mat-palette($mat-pink, A200, A100, A400);
2017-12-18 12:24:12 +01:00
$theme: mat-light-theme($primary, $accent);
// Include all theme styles for the components.
@include angular-material-theme($theme);
@include covalent-theme($theme);
2018-11-27 18:33:17 +01:00
2018-06-27 17:37:26 +02:00
.snackbar-warning {
2018-11-27 18:33:17 +01:00
background-color: #F39010;
color: #F3EFEF;
2018-02-09 16:54:41 +01:00
}
2018-06-27 17:37:26 +02:00
.snackbar-success {
2018-11-27 18:33:17 +01:00
background-color: #109204;
color: #F3EFEF;
2018-02-09 16:54:41 +01:00
}
2018-06-27 17:37:26 +02:00
.snackbar-error {
2018-11-27 18:33:17 +01:00
background-color: #CF1407;
color: #111010;
2018-06-27 17:37:26 +02:00
}