Newer
Older
//@import "~@angular/material/prebuilt-themes/indigo-pink.css";

Florent Poittevin
committed
@import "layout/grid";
//@import "layout/flexboxgrid";
@import "abstracts/variables";
@import "abstracts/mixins";
@import "abstracts/functions";
@import "abstracts/placeholders";
@import '~@angular/material/theming';
@import "base/reset";
@import "base/typography";
// always include only once per project
@include mat-core();
@import "themes/basic-theme";
@import "themes/yareta-theme";
@import "themes/dlcm-theme";
@import '~highlight.js/styles/github.css';
color: $primary-color;
position: relative;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
color: $primary-color-darker;
}
&:before {
content: "";
position: absolute;
width: 100%;
height: 2px;
bottom: -2px;
left: 0;
background-color: $primary-color-darker;
visibility: hidden;
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
}
&:hover:before {
visibility: visible;
-webkit-transform: scaleX(1);
transform: scaleX(1);
html {
height: 100vh;
}
html * {
font-size: 1em;
font-family: Roboto, "Helvetica Neue", sans-serif;
}
mat-dialog-container {
font-size: 14px;
font-family: Roboto, "Helvetica Neue", sans-serif;
}
ul {
padding: 0;
}
.mat-placeholder-required {
color: $red;
}
.mat-snack-bar-container {
&.native {
border-left: 8px solid;
color: $white !important;
&.success {
border-color: $success;
}
&.error {
border-color: $error;
}
&.warn {
border-color: $warning;
}
&.info {
border-color: $info;
}
button {
color: $white !important;
}

Florent Poittevin
committed
&.component {
padding: 4px;

Florent Poittevin
committed
}
ul, ol, li {

Florent Poittevin
committed
padding: 0;
margin-top: 0;
margin-bottom: 0;
list-style-type: none
}
.mat-tab-header-pagination {
visibility: hidden;
}
button .mat-progress-spinner circle, button .mat-spinner circle {
stroke: $white !important;
}
.spinner-background {
background-color: rgba(255, 255, 255, 0.66);
min-height: 100px;
animation: from-transparent-background-color 0.5s ease-in-out;
}
@keyframes from-transparent-background-color {
from {
background-color: transparent;
}
}
.button-spinner-background {
background-color: rgba(255, 255, 255, 0);
}
button:not(.mat-icon-button) {
&.mat-flat-button,
&.mat-button {
mat-icon {
margin-left: -5px;
margin-right: 5px;
line-height: 22px !important;
}
}
}
mat-label.disabled {
color: rgba(0, 0, 0, 0.54);
}