• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Themes & Styles Zombie CSS - 10.9.x compatible

     
    • 5 Vote(s) - 3.4 Average

    Zombie CSS - 10.9.x compatible

    A bits and pieces theme cherry picked from multiple themes out there
    Valentin
    Offline

    Junior Member

    Posts: 7
    Threads: 1
    Joined: 2024 Apr
    Reputation: 0
    #44
    2024-09-15, 11:14 AM
    Thank you so much !
    It works, sorry for the late answer ;-)

    (2024-08-31, 05:12 PM)Dex Luther Wrote:
    (2024-07-18, 06:50 AM)Valentin Wrote: Hello again !
    I would like to know if there is a possibility to get the background color (with still the blurry effect backdrop) less greyish ?

    That's because of one of this:
    Code:
    .backdropImage {
      filter: blur(5px) saturate(120%) contrast(120%) brightness(120%);
      mask-image: linear-gradient(to right, transparent, black),
        linear-gradient(to top, transparent, black);
      -webkit-mask-image: linear-gradient(to right, transparent, black),
        linear-gradient(to top, transparent, black);
      mask-composite: source-in;
      -webkit-mask-composite: source-in;
      mask-composite: intersect;
      animation: 0.5s ease-in-out both backdrop-fadein;
    }

    To change it, you'd have to add something like this under your imports:
    Code:
    .backdropImage {
      filter: blur(5px) saturate(120%) contrast(120%) brightness(120%);
      mask-image: None;
      -webkit-mask-image: None;
      -webkit-mask-composite: None;
      animation: 0.5s ease-in-out both backdrop-fadein;
    }

    I'm not a CSS expert though.

    You can also go to a random Jellyfin page with a backdrop in your browser, and press f12 (Or right click on the backdrop > Inspect) and poke around in the CSS on the right. There's check boxes you can disable and enable to see what changes to learn what things do and mess around with values.

    Once you get something you like, copy the thing at the top of the box (If you're messing with the backdrop it should be
    Code:
    .backdropImage
    Put a { and then copy the things you changed (make sure you add the ; at the end of each line and finish with a } at the end (like the example above). You can also use Notepad++ or an online CSS helper to help you format the code and then just copy it over into Jellyfin's Custom CSS thing.
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    Messages In This Thread
    Zombie CSS - 10.9.x compatible - by M0RPH3US - 2024-06-04, 10:09 AM
    RE: Zombie CSS - by nibbles - 2024-06-05, 11:03 AM
    RE: Zombie CSS - by M0RPH3US - 2024-06-05, 03:05 PM
    RE: Zombie CSS - by M0RPH3US - 2024-06-06, 08:14 AM
    RE: Zombie CSS - by Tom Sedláček - 2024-06-06, 01:15 PM
    RE: Zombie CSS - by Ted Hinklater - 2024-06-06, 01:33 PM
    RE: Zombie CSS - by M0RPH3US - 2024-06-06, 06:09 PM
    RE: Zombie CSS - by M0RPH3US - 2024-06-07, 12:35 PM
    RE: Zombie CSS - by Tom Sedláček - 2024-06-09, 11:45 AM
    RE: Zombie CSS - by SethBacon - 2024-06-06, 04:55 PM
    RE: Zombie CSS - 10.9.x compatible - by User 10100 - 2024-06-07, 09:49 PM
    RE: Zombie CSS - 10.9.x compatible - by PoMpls - 2024-06-09, 11:14 AM
    RE: Zombie CSS - 10.9.x compatible - by M0RPH3US - 2024-06-09, 01:59 PM
    RE: Zombie CSS - 10.9.x compatible - by PoMpls - 2024-06-10, 11:06 AM
    RE: Zombie CSS - 10.9.x compatible - by M0RPH3US - 2024-06-10, 11:20 AM
    RE: Zombie CSS - 10.9.x compatible - by Efficient_Good_5784 - 2024-06-10, 11:29 AM
    RE: Zombie CSS - 10.9.x compatible - by M0RPH3US - 2024-06-10, 11:46 AM
    RE: Zombie CSS - 10.9.x compatible - by Efficient_Good_5784 - 2024-06-10, 11:56 AM
    RE: Zombie CSS - 10.9.x compatible - by M0RPH3US - 2024-06-10, 12:06 PM
    RE: Zombie CSS - 10.9.x compatible - by PoMpls - 2024-06-10, 01:07 PM
    RE: Zombie CSS - 10.9.x compatible - by Efficient_Good_5784 - 2024-06-10, 01:45 PM
    RE: Zombie CSS - 10.9.x compatible - by Efficient_Good_5784 - 2024-06-11, 12:58 AM
    RE: Zombie CSS - 10.9.x compatible - by PoMpls - 2024-06-11, 08:18 AM
    RE: Zombie CSS - 10.9.x compatible - by javiimp - 2024-06-24, 02:48 PM
    RE: Zombie CSS - 10.9.x compatible - by Efficient_Good_5784 - 2024-06-24, 04:32 PM
    RE: Zombie CSS - 10.9.x compatible - by M0RPH3US - 2024-06-11, 05:52 PM
    RE: Zombie CSS - 10.9.x compatible - by AshipaEkO - 2024-06-26, 04:57 PM
    RE: Zombie CSS - 10.9.x compatible - by M0RPH3US - 2024-06-26, 07:10 PM
    RE: Zombie CSS - 10.9.x compatible - by AshipaEkO - 2024-06-27, 12:03 PM
    RE: Zombie CSS - 10.9.x compatible - by AshipaEkO - 2024-06-28, 03:22 PM
    RE: Zombie CSS - 10.9.x compatible - by M0RPH3US - 2024-06-28, 06:26 PM
    RE: Zombie CSS - 10.9.x compatible - by Ted Hinklater - 2024-06-27, 12:05 AM
    RE: Zombie CSS - 10.9.x compatible - by Valentin - 2024-06-28, 05:59 AM
    RE: Zombie CSS - 10.9.x compatible - by M0RPH3US - 2024-06-28, 06:37 PM
    RE: Zombie CSS - 10.9.x compatible - by Valentin - 2024-06-28, 07:01 PM
    RE: Zombie CSS - 10.9.x compatible - by Skankhunt42 - 2024-07-03, 09:19 PM
    RE: Zombie CSS - 10.9.x compatible - by M0RPH3US - 2024-07-04, 09:30 AM
    RE: Zombie CSS - 10.9.x compatible - by Skankhunt42 - 2024-07-05, 07:46 PM
    RE: Zombie CSS - 10.9.x compatible - by ericbook - 2024-07-15, 08:39 PM
    RE: Zombie CSS - 10.9.x compatible - by M0RPH3US - 2024-07-16, 08:50 AM
    RE: Zombie CSS - 10.9.x compatible - by Valentin - 2024-07-18, 06:50 AM
    RE: Zombie CSS - 10.9.x compatible - by Dex Luther - 2024-08-31, 05:12 PM
    RE: Zombie CSS - 10.9.x compatible - by Valentin - 2024-09-15, 11:14 AM
    RE: Zombie CSS - 10.9.x compatible - by xvasilikix - 2024-09-14, 09:54 PM
    RE: Zombie CSS - 10.9.x compatible - by ADUSLG - 2024-10-06, 10:24 PM
    RE: Zombie CSS - 10.9.x compatible - by foux - 2024-10-08, 02:35 PM
    RE: Zombie CSS - 10.9.x compatible - by M0RPH3US - 2024-10-09, 09:18 AM
    RE: Zombie CSS - 10.9.x compatible - by foux - 2024-10-09, 03:48 PM
    RE: Zombie CSS - 10.9.x compatible - by qy9756 - 2024-10-13, 02:57 PM
    RE: Zombie CSS - 10.9.x compatible - by foux - 2024-10-14, 11:32 AM
    RE: Zombie CSS - 10.9.x compatible - by Dark Phoenix - 2024-10-19, 02:16 PM
    RE: Zombie CSS - 10.9.x compatible - by foux - 2024-10-19, 04:01 PM
    RE: Zombie CSS - 10.9.x compatible - by M0RPH3US - 2024-10-19, 07:24 PM
    RE: Zombie CSS - 10.9.x compatible - by Dark Phoenix - 2024-10-22, 09:48 AM
    RE: Zombie CSS - 10.9.x compatible - by intime - 2024-10-22, 11:08 PM
    RE: Zombie CSS - 10.9.x compatible - by BlackSpirits - 2024-10-26, 12:45 PM
    RE: Zombie CSS - 10.9.x compatible - by Anatole - 2025-01-28, 03:32 PM
    RE: Zombie CSS - 10.9.x compatible - by M0RPH3US - 2025-01-28, 06:36 PM

    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode