2022-01-24 11:18:23 +01:00
|
|
|
|
|
|
|
@use '@angular/material' as mat;
|
|
|
|
@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();
|
|
|
|
|
|
|
|
// Define the palettes for your theme using the Material Design palettes available in palette.scss
|
|
|
|
// (imported above). For each palette, you can optionally specify a default, lighter, and darker
|
|
|
|
// hue. Available color palettes: https://material.io/design/color/
|
|
|
|
$openvidu-components-primary: mat-palette($mat-blue-grey, 50, 300);
|
|
|
|
$openvidu-components-accent: mat-palette($mat-amber, 500, 700, A100);
|
|
|
|
|
|
|
|
// The warn palette is optional (defaults to red).
|
|
|
|
$openvidu-components-warn: mat.define-palette(mat.$red-palette);
|
|
|
|
|
|
|
|
// Create the theme object. A theme consists of configurations for individual
|
|
|
|
// theming systems such as "color" or "typography".
|
|
|
|
$openvidu-components-theme: mat.define-light-theme((
|
|
|
|
color: (
|
|
|
|
primary: $openvidu-components-primary,
|
|
|
|
accent: $openvidu-components-accent,
|
|
|
|
warn: $openvidu-components-warn,
|
|
|
|
)
|
|
|
|
));
|
|
|
|
|
|
|
|
// Include theme styles for core and each component used in your app.
|
|
|
|
// Alternatively, you can import and @include the theme mixins for each component
|
|
|
|
// that you are using.
|
|
|
|
@include mat.all-component-themes($openvidu-components-theme);
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Material Icons';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
src: url(https://fonts.gstatic.com/s/materialicons/v38/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
|
|
|
|
}
|
|
|
|
|
|
|
|
.material-icons {
|
|
|
|
font-family: 'Material Icons';
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 24px;
|
|
|
|
line-height: 1;
|
|
|
|
letter-spacing: normal;
|
|
|
|
text-transform: none;
|
|
|
|
display: inline-block;
|
|
|
|
white-space: nowrap;
|
|
|
|
word-wrap: normal;
|
|
|
|
direction: ltr;
|
|
|
|
-webkit-font-feature-settings: 'liga';
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Default openvidu-webcomponent colors
|
|
|
|
:root {
|
|
|
|
|
|
|
|
--ov-primary-color: #303030;
|
|
|
|
--ov-secondary-color: #586063;
|
|
|
|
--ov-tertiary-color: #598eff;
|
|
|
|
--ov-warn-color: #EB5144;
|
|
|
|
--ov-accent-color: #ffae35;
|
|
|
|
|
|
|
|
--ov-dark-color: #1d1d1d;
|
|
|
|
--ov-dark-light-color: #43484A;
|
|
|
|
|
|
|
|
--ov-light-color: #ffffff;
|
|
|
|
--ov-light-dark-color: #f1f1f1;
|
2022-01-25 12:02:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
html, body { height: 100%; overflow: hidden;}
|
|
|
|
body { margin: 0; font-family: 'Roboto','RobotoDraft',Helvetica,Arial,sans-serif;}
|