• 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 Show your theme/style

     
    • 0 Vote(s) - 0 Average

    Show your theme/style

    bpawnz
    Offline

    Junior Member

    Posts: 3
    Threads: 0
    Joined: 2024 Jan
    Reputation: 0
    Country:United States
    #8
    2024-12-18, 05:13 PM (This post was last modified: 2024-12-20, 02:24 AM by bpawnz. Edited 4 times in total.)
    This theme is actually excellent.. good job!

    I did some modifications to your theme and cleaned up some things a bit.. All though I 100% based it off the look you were going for.  If ur interested see below. I added some animations, mouse over effects, and colors in certain area.

    Also do you know how to style playlist in grid format? I cant seem to make that happen?  just something i personally want for my collection

    Code:
    @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/scyfin-theme.css');
    @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/disable-static-drawer.css');
    @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-snow.css');

    /* Custom Google Font with more variety */
    @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Orbitron:wght@400;500;700&display=swap');

    /* Root Variables for Custom Color Scheme */
    :root {
        --custom-primary-color: #3498db;
        --custom-secondary-color: #2ecc71;
        --custom-accent-color: #e74c3c;
        --custom-background-dark: #1a1a2e;
        --custom-background-light: #16213e;
    }

    /* Enhanced Global Styling */
    body, h1, h2, h3, h4 {
        font-family: 'Quicksand', sans-serif;
        letter-spacing: 0.5px;
        text-rendering: optimizeLegibility;
    }

    .emby-textarea {
        font-family: monospace;
        font-size: 10pt;
    }

    /* Unique Hover and Interaction Effects */
    @media (hover: hover) and (pointer: fine) {
        .paper-icon-button-light:hover:not(:disabled) {
            color: var(--custom-secondary-color) !important;
            transform: scale(1.2) rotate(5deg);
            transition: all 0.3s ease;
        }
    }

    /* Enhanced Button Styles */
    .emby-button {
        transition: all 0.3s ease;
        border-radius: 15px !important;
        text-transform: uppercase;
        font-weight: 600;
    }

    #skipIntro {
        &.upNextContainer {
            background-color: transparent !important;
            backdrop-filter: none !important;
        }

        .emby-button {
            border-radius: 100px !important;
            background-color: rgba(0, 0, 0, 0.7) !important;

            &:hover, &:focus {
                background-color: rgba(151, 151, 151, 0.7) !important;
            }
        }
    }

    #skipIntro .emby-button:hover {
        background: rgb(var(--accent));
        box-shadow: 0 0 8px rgba(151, 151, 151, 0.6);
        filter: brightness(1.2);
        transform: translateY(-3px);
    }

    #skipIntro .emby-button:focus {
        background: rgb(var(--accent));
        box-shadow: 0 0 8px rgba(151, 151, 151, 0.6);
    }

    /* Modernized Backdrop and Detail Views */
    .backdropContainer {
        height: 85vh;
        filter: brightness(0.8);
        transition: filter 0.3s ease;
    }

    .backdropContainer:hover {
        filter: brightness(1);
    }

    .detailRibbon {
        background: linear-gradient(to top, var(--custom-background-dark), transparent) !important;
    }

    .layout-desktop .detailPageContent {
        padding-left: 3.3% !important;
        padding-right: 3.3% !important;
    }

    /* Enhanced Login Page */
    #loginPage {
        background: linear-gradient(45deg, var(--custom-background-dark), var(--custom-background-light)) !important;
        background-size: 400% 400% !important;
        animation: gradientBG 15s ease infinite;
    }

    @keyframes gradientBG {
        0% {background-position: 0% 50%;}
        50% {background-position: 100% 50%;}
        100% {background-position: 0% 50%;}
    }

    /* Card and Item Styling */
    .listItemImage-large {
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        transition: transform 0.3s ease;
    }

    .listItemImage-large:hover {
        transform: scale(1.05);
    }

    /* Slider and Progress Enhancements */
    .mdl-slider::-webkit-slider-thumb {
        background: #fff;
    }

    .mdl-slider-background-flex {
        height: 9px !important;
        background: hsla(0,0%,100%,.15) !important;
        backdrop-filter: blur(15px);
    }

    /* Responsive Adjustments */
    @media (max-width: 1599px) {
        .playlistContainer {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
        }
    }

    /* Additional Unique Touches */
    .countIndicator, .fullSyncIndicator, .mediaSourceIndicator, .playedIndicator {
        background: #fff;
        font-family: 'Orbitron', sans-serif;
    }

    .layout-desktop .mainDetailButtons .btnPlay::after {
        content: "Lire" !important;
    }

    /* Hide Unnecessary Elements */
    .trackSelections,
    .itemTags,
    .itemExternalLinks,
    .btnPlayTrailer,
    .btnPlaystate,
    .btnPreviousChapter,
    .btnNextChapter,
    .iconOsd,
    .videoOsdBottom .buttons .mediaInfoCriticRating,
    .videoOsdBottom .buttons .mediaInfoItem,
    .mediaInfoCriticRatingFresh,
    .mediaInfoCriticRatingRotten,
    .alphaPicker {
        display: none;
    }

    /* Additional Mobile and Responsive Styles */
    .layout-mobile .itemBackdrop {
        margin-top: 0px;
    }

    .layout-mobile .detailSectionContent {
        padding: 0px 20px !important;
    }

    .headerTabs {
        backdrop-filter: blur !important;
    }

    /* Other existing styles from the original theme */
    .mainDetailButtons {
        margin-right: 3.3%;
    }

    .emby-scroller {
        margin-right: 0% !important;
    }

    /* Additional specific styles */
    .selectionCommandsPanel {
        background-color: rgb(21, 21, 21) !important;
    }

    .sectionTabs {
        background: transparent !important;
    }

    /* Login Background */
    #loginPage {
        background: url(https://i.imgur.com/EIu7XYn.png) !important;
        background-size: cover !important;
        background-position: center !important;
    }
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    Messages In This Thread
    Show your theme/style - by Drake97 - 2024-11-14, 12:16 AM
    RE: Show your theme/style - by mally_bu - 2024-11-17, 09:58 PM
    RE: Show your theme/style - by Drake97 - 2024-11-19, 06:20 AM
    RE: Show your theme/style - by Ssiswent - 2024-11-27, 08:39 AM
    RE: Show your theme/style - by mally_bu - 2024-12-18, 11:40 PM
    RE: Show your theme/style - by bpawnz - 2024-12-19, 05:39 AM
    RE: Show your theme/style - by Iskelderon - 2024-11-23, 11:40 AM
    RE: Show your theme/style - by Drake97 - 2024-11-26, 05:23 AM
    RE: Show your theme/style - by Iskelderon - 2024-11-26, 08:41 AM
    RE: Show your theme/style - by bpawnz - 2024-12-18, 05:13 PM
    RE: Show your theme/style - by _Mayhem_ - 2024-12-31, 10:45 PM
    RE: Show your theme/style - by M0RPH3US - 2025-01-02, 06:34 AM
    RE: Show your theme/style - by JellyHunter - 2025-01-04, 07:45 PM
    RE: Show your theme/style - by Ted Hinklater - 2025-01-04, 10:45 PM
    RE: Show your theme/style - by Ted Hinklater - 2025-01-08, 10:28 PM
    RE: Show your theme/style - by _Mayhem_ - 2025-01-31, 11:30 AM
    RE: Show your theme/style - by frankieknuckles - 2025-01-22, 03:30 AM
    RE: Show your theme/style - by M0RPH3US - 2025-01-27, 05:26 PM
    RE: Show your theme/style - by Hunter - 2025-01-30, 12:44 AM
    RE: Show your theme/style - by zer0entity - 2025-03-09, 02:41 AM
    RE: Show your theme/style - by RostigerSpieler - 2025-04-20, 08:15 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