Fix fonts.

master
Icedream 2019-11-19 04:36:54 +01:00
parent 5211f9777e
commit a82a0e2dae
Signed by: icedream
GPG Key ID: 1573F6D8EFE4D0CF
5 changed files with 10 additions and 12 deletions

View File

@ -2,8 +2,7 @@
@import 'meta/prefix'; @import 'meta/prefix';
// currently playing track metadata // currently playing track metadata
#meta { .meta {
@include icedream-font;
color: $icedream-text-color; color: $icedream-text-color;
line-height: $icedream-extended-line-height; line-height: $icedream-extended-line-height;
} }

View File

@ -2,11 +2,6 @@
@import 'nav/bgfade'; @import 'nav/bgfade';
#nav { #nav {
@include icedream-font;
// push in some air
line-height: $icedream-extended-line-height;
> .active { > .active {
// apply darker background and brighter text to content // apply darker background and brighter text to content
background: $icedream-bg-color; background: $icedream-bg-color;

View File

@ -1,6 +1,6 @@
// metadata overlay tweak // metadata overlay tweak
@if $icedream-metadata-overlay { @if $icedream-metadata-overlay {
#meta { .meta {
margin: 0; // sass-lint:disable-line variable-for-property margin: 0; // sass-lint:disable-line variable-for-property
position: fixed; position: fixed;
bottom: 0; bottom: 0;
@ -15,9 +15,11 @@
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#{$icedream-metadata-overlay-background-gradient-from}, endColorstr=#{$icedream-metadata-overlay-background-gradient-to}); filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#{$icedream-metadata-overlay-background-gradient-from}, endColorstr=#{$icedream-metadata-overlay-background-gradient-to});
} }
.page { #main {
&:not(#page_EQ) { section {
&:not(#pageEQ) {
height: calc(100% - 9vmin); height: calc(100% - 9vmin);
} }
} }
}
} }

View File

@ -1,5 +1,5 @@
@if $icedream-metadata-prefix { @if $icedream-metadata-prefix {
#meta { #nowplaying {
&::before { &::before {
content: $icedream-metadata-prefix; content: $icedream-metadata-prefix;
font-weight: 700; font-weight: 700;

View File

@ -18,6 +18,8 @@ body.icedream {
--gradient-stop-1: #{$gradient-stop-1}; --gradient-stop-1: #{$gradient-stop-1};
--gradient-radial: #{$gradient-radial}; --gradient-radial: #{$gradient-radial};
@include icedream-font;
@import 'header'; @import 'header';
@import 'main'; @import 'main';
} }