2021-04-13 21:53:58 +02:00
|
|
|
:host {
|
|
|
|
color: rgb(var(--dark-primary-text));
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
.mat-card {
|
2022-01-13 19:07:23 +01:00
|
|
|
&.about-container {
|
2021-07-31 11:21:32 +02:00
|
|
|
a {
|
|
|
|
color: rgba(var(--palette-primary-500), 1);
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: rgba(var(--palette-primary-300), 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-13 21:53:58 +02:00
|
|
|
.independent-and-bootstrapped-logo {
|
|
|
|
background-image: url('/assets/bootstrapped-dark.svg');
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: contain;
|
|
|
|
height: 2rem;
|
|
|
|
opacity: 0.87;
|
|
|
|
width: 10rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
:host-context(.is-dark-theme) {
|
|
|
|
color: rgb(var(--light-primary-text));
|
|
|
|
|
|
|
|
.mat-card {
|
|
|
|
.independent-and-bootstrapped-logo {
|
|
|
|
background-image: url('/assets/bootstrapped-light.svg');
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|