2020-06-16 18:40:48 +02:00
|
|
|
// Custom Theming for Angular Material
|
|
|
|
// For more information: https://material.angular.io/guide/theming
|
|
|
|
@import '~@angular/material/theming';
|
|
|
|
// Plus imports for other components in your app.
|
|
|
|
|
|
|
|
// Include the common styles for Angular Material. We include this here so that you only
|
|
|
|
// have to load a single css file for Angular Material in your app.
|
|
|
|
// Be sure that you only ever include this mixin once!
|
|
|
|
@include mat-core();
|
|
|
|
|
|
|
|
// import your custom themes
|
|
|
|
@import 'theme-light.scss';
|
|
|
|
@import 'theme-dark.scss';
|
|
|
|
@import 'theme-contrast.scss';
|
|
|
|
|
|
|
|
.theme-light {
|
|
|
|
@include angular-material-theme($theme-light);
|
|
|
|
}
|
|
|
|
.theme-dark {
|
|
|
|
@include angular-material-theme($theme-dark);
|
|
|
|
}
|
|
|
|
.theme-contrast {
|
|
|
|
@include angular-material-theme($theme-contrast);
|
|
|
|
}
|
|
|
|
|
2020-04-22 12:56:18 +02:00
|
|
|
/*
|
|
|
|
You can add global.scss styles to this file, and also import other style files
|
|
|
|
==================================================
|
|
|
|
all styles should be imported in an order from top:
|
|
|
|
most global scope, to bottom: the most specific scope of qualification.
|
|
|
|
==================================================
|
|
|
|
*/
|
|
|
|
// configuration
|
|
|
|
@import './styles/variables';
|
|
|
|
@import './styles/dev-utilities/mixins';
|
|
|
|
@import './styles/dev-utilities/helpers';
|
2020-05-01 19:10:17 +02:00
|
|
|
// @import './styles/dev-utilities/debug';
|
2020-04-22 12:56:18 +02:00
|
|
|
@import './styles/libraries/frameworks';
|
|
|
|
@import './styles/libraries/overrides';
|
|
|
|
// typography
|
|
|
|
//@import './styles/partials/font-families';
|
|
|
|
@import './styles/partials/typo';
|
|
|
|
// themes
|
|
|
|
@import './styles/themes/all';
|
|
|
|
// most general dom elements
|
|
|
|
@import './styles/partials/global';
|
|
|
|
|
|
|
|
// main content elements
|
|
|
|
@import './styles/partials/main';
|
|
|
|
@import './styles/partials/tables';
|
|
|
|
@import './styles/partials/buttons';
|
2021-12-09 15:06:55 +01:00
|
|
|
@import './styles/partials/logo';
|
|
|
|
@import './styles/partials/navigation';
|
|
|
|
@import './styles/partials/links';
|
2020-04-22 12:56:18 +02:00
|
|
|
@import './styles/partials/forms';
|
|
|
|
@import './styles/partials/form-controls';
|
|
|
|
@import './styles/partials/images';
|
2021-12-09 15:06:55 +01:00
|
|
|
// responsive, mobile first
|
2020-04-22 12:56:18 +02:00
|
|
|
@import './styles/partials/responsive';
|
2020-06-16 18:40:48 +02:00
|
|
|
|
|
|
|
// reset suggested by material-angular
|
2021-12-09 15:06:55 +01:00
|
|
|
//html,
|
|
|
|
//body {
|
|
|
|
// height: 100%;
|
|
|
|
//}
|
2020-06-16 18:40:48 +02:00
|
|
|
body {
|
|
|
|
margin: 0;
|
2021-12-09 15:06:55 +01:00
|
|
|
font-family: $default_font;
|
2020-06-16 18:40:48 +02:00
|
|
|
}
|