152 lines
2.1 KiB
SCSS
152 lines
2.1 KiB
SCSS
/* You can add global styles to this file, and also import other style files */
|
|
/*
|
|
blue
|
|
#CBD7F4
|
|
#B6C1DB
|
|
#96A0B5
|
|
#636A78
|
|
#2C2F36
|
|
|
|
grey
|
|
0123456789abcdef
|
|
^ ^ ^ ^ ^^
|
|
#000
|
|
#444
|
|
#888
|
|
#bbb
|
|
#eee
|
|
#fff
|
|
*/
|
|
$background-color: #CBD7F4;
|
|
|
|
|
|
|
|
//@import '~@angular/material/prebuilt-themes/deeppurple-amber.css';
|
|
@import 'custom-theme.scss';
|
|
|
|
*, body {
|
|
font-family: Arial;
|
|
font-size: 14px;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2rem;
|
|
margin-block-start: 0.67rem;
|
|
margin-block-end: 0.67rem;
|
|
}
|
|
h2 {
|
|
font-size: 1.5rem;
|
|
margin-block-start: 0.83rem;
|
|
margin-block-end: 0.83rem;
|
|
}
|
|
|
|
.icon-inline {
|
|
width: 1em;
|
|
height: 1em;
|
|
vertical-align: text-bottom;
|
|
}
|
|
.mat-button .mat-button-wrapper .icon-inline {
|
|
vertical-align: text-top;
|
|
}
|
|
|
|
button[disabled] .icon-inline {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.icon-small {
|
|
width: 1.5em;
|
|
height: 1.5em;
|
|
margin: 0.2em;
|
|
}
|
|
.icon-small:hover {
|
|
background-color: #eee;
|
|
}
|
|
|
|
.icon-large {
|
|
width: 8em;
|
|
height: 8em;
|
|
margin: 1em;
|
|
}
|
|
|
|
.icon-select {
|
|
width: 1.5em;
|
|
height: 1.5em;
|
|
vertical-align: text-bottom;
|
|
}
|
|
.mat-option-disabled .icon-select {
|
|
opacity: 0.25;
|
|
}
|
|
|
|
mat-option.mat-option {
|
|
height: 2em;
|
|
line-height: 2em;
|
|
}
|
|
|
|
mat-option.mat-option.mat-active {
|
|
background-color: #ccc;
|
|
}
|
|
|
|
a.external-link:after {
|
|
background: transparent url('/assets/img/external-link.svg') no-repeat center bottom;
|
|
background-size: 0.8em;
|
|
display: inline-block;
|
|
width: 1.1em;
|
|
height: 1em;
|
|
content: "";
|
|
}
|
|
|
|
.inline {
|
|
display: inline-block;
|
|
}
|
|
|
|
.clickable {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.top-right {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
|
|
body .mat-select-panel, body .mat-autocomplete-panel {
|
|
max-height: 300px;
|
|
}
|
|
|
|
mat-form-field {
|
|
width: 100%;
|
|
margin-right: 1ex;
|
|
}
|
|
mat-form-field:last-child {
|
|
margin-right: 0ex;
|
|
}
|
|
mat-form-field.pdb-form-number {
|
|
width: 3.5em;
|
|
}
|
|
mat-form-field.pdb-form-number-long {
|
|
width: 7em;
|
|
}
|
|
.pdb-form-icon-small {
|
|
display: inline-block;
|
|
width: 2em;
|
|
vertical-align: middle;
|
|
}
|
|
mat-form-field.pdb-form-mid {
|
|
width: 7.5em;
|
|
}
|
|
mat-form-field.pdb-form-wide {
|
|
width: 10em;
|
|
}
|
|
|
|
|
|
|
|
|
|
.errorPanel {
|
|
padding: 1ex;
|
|
background-color: map-get($mat-red, 100);
|
|
border-radius: 5px;
|
|
}
|
|
|