50 lines
841 B
SCSS
50 lines
841 B
SCSS
@import "../node_modules/@angular/material/prebuilt-themes/deeppurple-amber.css";
|
|
@import '../node_modules/@angular/cdk/overlay-prebuilt.css';
|
|
@import "../node_modules/bootstrap-icons/font/bootstrap-icons.css";
|
|
|
|
a {
|
|
color: #0366d6;
|
|
}
|
|
|
|
.btn:focus,
|
|
.btn:active:focus,
|
|
.btn-link.nav-link:focus,
|
|
.form-control:focus,
|
|
.form-check-input:focus {
|
|
box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
|
|
}
|
|
|
|
code {
|
|
color: #e01a76;
|
|
}
|
|
|
|
.btn-primary {
|
|
color: #fff;
|
|
background-color: #1b6ec2;
|
|
border-color: #1861ac;
|
|
}
|
|
|
|
.assignment-row {
|
|
height: 40vh;
|
|
}
|
|
|
|
.user-row {
|
|
height: 45vh;
|
|
}
|
|
|
|
.flex-col {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.flex-col .card {
|
|
flex: 1;
|
|
}
|
|
|
|
.mat-color-scheme-light .mat-mdc-tab:not(.mdc-tab--active) .mdc-tab__text-label {
|
|
color: rgb(100, 95, 95) !important;
|
|
}
|
|
|
|
.mdc-tab__text-label{
|
|
font-size: medium;
|
|
} |