15 lines
413 B
CSS
15 lines
413 B
CSS
/*
|
|
This module will change the Jellyfin banner to a custom one.
|
|
This allows you to customise the background on the homepage.
|
|
This can be used as a standalone module.
|
|
*/
|
|
|
|
:root {
|
|
--banner-url: url('https://git.tolchin.pro/api/v1/repos/Oleg/Tolfin/raw/assets/banner.png?ref=main');
|
|
}
|
|
|
|
.pageTitleWithDefaultLogo,
|
|
.pageTitleWithLogo,
|
|
.splashLogo {
|
|
background-image: var(--banner-url) !important;
|
|
} |