7dcbc7efec
Forces the Fusion theme when running night mode, so we don't need to work around platform themes that don't respond to the defined palette. Feedback/suggestions on the chosen colours welcome - _vars.scss is the file to change if you want to experiment with adjustments.
43 lines
579 B
SCSS
43 lines
579 B
SCSS
/* Copyright: Ankitects Pty Ltd and contributors
|
|
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
|
|
|
@use 'vars';
|
|
@use 'card_counts';
|
|
|
|
.smallLink {
|
|
font-size: 10px;
|
|
}
|
|
|
|
h3 {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.descfont {
|
|
padding: 1em;
|
|
color: vars.$day-slightly-grey-text;
|
|
}
|
|
|
|
.description {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
#fulldesc {
|
|
display: none;
|
|
}
|
|
|
|
.descmid {
|
|
width: 70%;
|
|
margin: 0 auto 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.dyn {
|
|
text-align: center;
|
|
}
|
|
|
|
.nightMode {
|
|
.descfont {
|
|
color: vars.$night-slightly-grey-text;
|
|
}
|
|
}
|