Introduce boolean variable for smoke blurring.
gitea/icedream/rekt-theme/master This commit looks good Details

[skip ci]
header/meta/side-by-side
Icedream 2018-07-16 00:42:34 +02:00
parent 6eaf78abbc
commit 88d93f3f70
Signed by: icedream
GPG Key ID: 1573F6D8EFE4D0CF
2 changed files with 5 additions and 0 deletions

View File

@ -18,6 +18,7 @@ $icedream-metadata-prefix: '🎶 Now playing: ' !default;
$icedream-nav-tab-fix: false !default; $icedream-nav-tab-fix: false !default;
$icedream-nav-bg-fade: true !default; $icedream-nav-bg-fade: true !default;
$icedream-fog-bg: true !default; $icedream-fog-bg: true !default;
$icedream-fog-bg-blur: false !default;
$icedream-fog-bg-animated: true !default; $icedream-fog-bg-animated: true !default;
$icedream-fog-bg-animation-length: 30s !default; $icedream-fog-bg-animation-length: 30s !default;
$icedream-station-fill-background-color: rgba(255, 255, 255, .1); $icedream-station-fill-background-color: rgba(255, 255, 255, .1);

View File

@ -18,6 +18,10 @@
height: 100%; height: 100%;
min-width: 100%; min-width: 100%;
@if $icedream-fog-bg-blur {
filter: blur(16px);
}
@if not($icedream-fog-bg-animated) { @if not($icedream-fog-bg-animated) {
background-size: 200% 100%; background-size: 200% 100%;
} }