funky-framadate-front/src/styles.scss

71 lines
2.1 KiB
SCSS
Raw Permalink Normal View History

// Custom Theming for Angular Material
@use '@angular/material' as mat;
// For more information: https://material.angular.io/guide/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();
@include mat.all-component-typographies();
// import your custom themes
@import 'theme-light.scss';
@import 'theme-dark.scss';
@import 'theme-contrast.scss';
.theme-light {
@include mat.all-component-colors($theme-light);
}
// .theme-dark {
// @include mat.all-component-colors($theme-dark);
// }
// .theme-contrast {
// @include mat.all-component-colors($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';
// reset suggested by material-angular
2021-12-09 15:06:55 +01:00
//html,
//body {
// height: 100%;
//}
body {
margin: 0;
2021-12-09 15:06:55 +01:00
font-family: $default_font;
}