• 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 Development Plugin Development Plugin Request

     
    • 0 Vote(s) - 0 Average

    Plugin Request

    To the plugin programmers
    SethBacon
    Offline

    Member

    Posts: 66
    Threads: 7
    Joined: 2023 Nov
    Reputation: 8
    Country:Canada
    #7
    Yesterday, 02:24 PM (This post was last modified: Yesterday, 02:26 PM by SethBacon. Edited 1 time in total.)
    I think this will do what you want, if you find a font you like:


    /* Import a custom font from Google Fonts Put this import line at the top of your CSS */
    @import url('https://fonts.googleapis.com/css2?family=Crafty+Girls&display=swap');

    .sectionTitle.padded-left:nth-of-type(1)::before {

        content: "YOUR TEXT HERE";

        display: block;
        text-align: center;
        max-width: 50vh;  // 50% how wide you want the text before new line
        width: fit-content;
        margin: 0.3em auto;

        font-family: 'Crafty Girls', cursive;   
        font-size: 2.5rem;
        font-weight: 400;
        line-height: 1.2;
       
        color: yellow;
    }



    And heres a simple block to make it fade in over 3 seconds, paste after the other code, if you want: 

    .sectionTitle.padded-left:nth-of-type(1)::before {
        opacity: 0;
        animation: fadeIn 3s ease-out forwards 3.5s;  /* Fades in and moves up slightly */
    }
    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: translateY(10px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    [Image: sJuuY7y.jpeg]
    « Next Oldest | Next Newest »

    Users browsing this thread: 2 Guest(s)


    Messages In This Thread
    Plugin Request - by RostigerSpieler - Yesterday, 07:56 AM
    RE: Plugin Request - by SethBacon - Yesterday, 11:26 AM
    RE: Plugin Request - by SethBacon - Yesterday, 11:55 AM
    RE: Plugin Request - by RostigerSpieler - Yesterday, 12:17 PM
    RE: Plugin Request - by SethBacon - Yesterday, 12:43 PM
    RE: Plugin Request - by RostigerSpieler - Yesterday, 01:10 PM
    RE: Plugin Request - by SethBacon - Yesterday, 02:24 PM
    RE: Plugin Request - by RostigerSpieler - Yesterday, 02:34 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