home.social

#customcss — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #customcss, aggregated by home.social.

  1. Pro-Grade Ham Radio Displays: Integrating OpenHamClock into PiSignage

    758 words, 4 minutes read time.

    A Helping Hand Needed for a Fellow Programmer

    I’m reaching out to see if you can lend a hand to a talented software developer who’s currently on the job hunt. With over 30 years of experience in C#, .NET (Core/6–8), REST APIs, SQL Server, Angular/Razor, Kubernetes, and cloud CI/CD, he’s a seasoned pro with a proven track record of leading modernization projects and delivering production systems.

    Some of his notable accomplishments include DB2 to SQL migrations, building real-time SignalR apps, and developing full-stack API and frontend projects. Based in Southeast Michigan, he’s looking for senior engineering, architecture, or technical lead roles that will challenge him and utilize his skills.

    If you’re in a position to help, you can check out his resume and portfolio at http://charles.friasteam.com.

    Let’s all look out for each other – if you know of any opportunities that might be a good fit, could you please consider passing this along to your network?

    If you are a ham radio operator, you know that a HamClock is the ultimate shack companion. But what if you want to move beyond a dedicated small screen and integrate that data-rich display into a professional digital signage environment?

    By using PiSignage, you can rotate your HamClock with other station metrics, weather, or club announcements. However, getting a clean, secure, and “pop-up free” experience requires a few tricks.

    In this post, I’ll show you how to deploy OpenHamClock using Docker and how to strip away the UI clutter for a seamless kiosk experience.

    The Setup

    To follow along, you will need a PiSignage server instance. I personally run mine as a Docker container, which keeps the server stack isolated and easy to back up.

    1. The Docker Compose Configuration

    PiSignage and modern browsers often require secure contexts (HTTPS) for certain features. Since the standard HamClock output is HTTP, we’ll use a two-service setup: the clock itself and a lightweight SSL-wrap sidecar using socat and openssl.

    docker-componse.yml

     services:    openhamclock:      image: ghcr.io/accius/openhamclock:latest      container_name: openhamclock      expose:        - "3000"      environment:        - CALLSIGN=<CALL SIGN>        - LOCATOR=<Grid Square Locator>        - THEME=dark        - UNITS=imperial      restart: unless-stopped     ssl-wrap:      image: alpine      container_name: hamclock-ssl      ports:        - "3000:3000"      command: >        sh -c "apk add --no-cache socat openssl &&                openssl req -x509 -newkey rsa:2048 -keyout /tmp/key.pem -out /tmp/cert.pem -days 365 -nodes -subj '/CN=localhost' &&               cat /tmp/cert.pem /tmp/key.pem > /tmp/combined.pem &&               socat OPENSSL-LISTEN:3000,cert=/tmp/combined.pem,verify=0,fork,reuseaddr TCP:openhamclock:3000"      restart: unless-stopped 

    2. Silencing the “What’s New” Pop-ups

    When using HamClock as a signage element, you want it to be “set and forget.” The “What’s New” slide-ins are helpful for desktop users but ruin a clean kiosk display.

    While there is a formal change request pending for a toggle, you can currently “force” these elements to stay hidden by injecting a bit of CSS directly into the distribution files. Run this command within your app environment:

    find /app/dist -name "*.css" -exec sh -c 'echo "div[style*=\"whatsNewSlideIn\"], div[style*=\"backdrop-filter\"] { display: none !important; }" >> {}' \;
    

    3. Setting Up the Slide in PiSignage

    Once your containers are humming along, you need to tell PiSignage how to display the clock.

    Create the Weblink Asset

    1. Log in to your PiSignage Admin Panel.
    2. Navigate to Assets > Add > Weblink.
    3. Fill in the details:
      • Name: OpenHamClock
      • Link Address: https://<YOUR-HOSTNAME>:3000/?kiosk=true
    4. Click Save.

    Pro Tip: The ?kiosk=true suffix is critical. It tells HamClock to hide its own internal menus and headers, giving you a dedicated, high-contrast dashboard perfect for a wall-mounted display.

    Deploy to Your Player

    1. Go to Playlists and add your new “OpenHamClock” asset.
    2. Set the Duration: Set this to 0 for a permanent display, or a high number (like 300 for 5 minutes) if it’s part of a rotation.
    3. Go to Groups, select your player, and deploy the playlist.

    Your screen should refresh and show a beautiful, clean HamClock interface within seconds!

    Running PiSignage in Docker?

    For those of you looking to keep your entire server stack contained, running the PiSignage central server in Docker is the way to go. It keeps your host OS clean and makes management a breeze.

    If you’d like me to discuss how to set up a dockerized PiSignage server, please comment below!

    — 73 —

    Call to Action

    Getting this stack to play nice wasn’t a “one-and-done” install. It was a hard-fought process that took multiple attempts to finally crack the code on bypassing those “What’s New” screens and forcing a clean kiosk display. But the victory is in the uptime.

    Don’t just lurk. If you’ve got the guts to show how you’re rebuilding your station on the wreckage of the old ways, drop a comment below. How are you occupying the victory today?

    SUPPORTSUBSCRIBECONTACT ME

    D. Bryan King

    Sources

    Disclaimer:

    I love sharing what I’m learning, but please keep in mind that everything I write here—including this post—is just my personal take. These are my own opinions based on my research and my understanding of things at the time I’m writing them. Since life moves way too fast and things change quickly, please use your own best judgment and consult the experts for your specific situations!

    Related Posts

    Rate this:

    #AlpineLinux #AmateurRadioDashboard #amateurRadioTechnology #Automation #containerization #CSSInjection #CustomCSS #DetroitHamRadio #devops #DigitalDashboard #DigitalSignage #DisplaySolutions #Docker #DockerCompose #DXCluster #EN82le #GHCR #gridSquare #hamRadio #HamRadioKiosk #hamRadioSoftware #hamRadioTools #HamClock #HomeLab #HTTPSWrapper #KioskMode #KioskSetup #KioskTrue #Linux #MaidenheadLocator #networkSecurity #OpenSource #OpenHamClock #OpenSSL #piSignage #PiSignageDocker #PiSignageTips #RadioStationDisplay #RaspberryPi #RaspberryPiProjects #realTimeData #RemoteMonitoring #ScreenRotation #SelfHosted #ServerManagement #ShackClock #SignalTracking #SmartShack #Socat #SoftwareWorkaround #SolarData #SSLWrap #StationIntegration #TechGuide #TechnicalTutorial #UITweaks #W8DBK #WebDevelopment #WebLinkAsset
  2. Pro-Grade Ham Radio Displays: Integrating OpenHamClock into PiSignage

    758 words, 4 minutes read time.

    A Helping Hand Needed for a Fellow Programmer

    I’m reaching out to see if you can lend a hand to a talented software developer who’s currently on the job hunt. With over 30 years of experience in C#, .NET (Core/6–8), REST APIs, SQL Server, Angular/Razor, Kubernetes, and cloud CI/CD, he’s a seasoned pro with a proven track record of leading modernization projects and delivering production systems.

    Some of his notable accomplishments include DB2 to SQL migrations, building real-time SignalR apps, and developing full-stack API and frontend projects. Based in Southeast Michigan, he’s looking for senior engineering, architecture, or technical lead roles that will challenge him and utilize his skills.

    If you’re in a position to help, you can check out his resume and portfolio at http://charles.friasteam.com.

    Let’s all look out for each other – if you know of any opportunities that might be a good fit, could you please consider passing this along to your network?

    If you are a ham radio operator, you know that a HamClock is the ultimate shack companion. But what if you want to move beyond a dedicated small screen and integrate that data-rich display into a professional digital signage environment?

    By using PiSignage, you can rotate your HamClock with other station metrics, weather, or club announcements. However, getting a clean, secure, and “pop-up free” experience requires a few tricks.

    In this post, I’ll show you how to deploy OpenHamClock using Docker and how to strip away the UI clutter for a seamless kiosk experience.

    The Setup

    To follow along, you will need a PiSignage server instance. I personally run mine as a Docker container, which keeps the server stack isolated and easy to back up.

    1. The Docker Compose Configuration

    PiSignage and modern browsers often require secure contexts (HTTPS) for certain features. Since the standard HamClock output is HTTP, we’ll use a two-service setup: the clock itself and a lightweight SSL-wrap sidecar using socat and openssl.

    docker-componse.yml

     services:    openhamclock:      image: ghcr.io/accius/openhamclock:latest      container_name: openhamclock      expose:        - "3000"      environment:        - CALLSIGN=<CALL SIGN>        - LOCATOR=<Grid Square Locator>        - THEME=dark        - UNITS=imperial      restart: unless-stopped     ssl-wrap:      image: alpine      container_name: hamclock-ssl      ports:        - "3000:3000"      command: >        sh -c "apk add --no-cache socat openssl &&                openssl req -x509 -newkey rsa:2048 -keyout /tmp/key.pem -out /tmp/cert.pem -days 365 -nodes -subj '/CN=localhost' &&               cat /tmp/cert.pem /tmp/key.pem > /tmp/combined.pem &&               socat OPENSSL-LISTEN:3000,cert=/tmp/combined.pem,verify=0,fork,reuseaddr TCP:openhamclock:3000"      restart: unless-stopped 

    2. Silencing the “What’s New” Pop-ups

    When using HamClock as a signage element, you want it to be “set and forget.” The “What’s New” slide-ins are helpful for desktop users but ruin a clean kiosk display.

    While there is a formal change request pending for a toggle, you can currently “force” these elements to stay hidden by injecting a bit of CSS directly into the distribution files. Run this command within your app environment:

    find /app/dist -name "*.css" -exec sh -c 'echo "div[style*=\"whatsNewSlideIn\"], div[style*=\"backdrop-filter\"] { display: none !important; }" >> {}' \;
    

    3. Setting Up the Slide in PiSignage

    Once your containers are humming along, you need to tell PiSignage how to display the clock.

    Create the Weblink Asset

    1. Log in to your PiSignage Admin Panel.
    2. Navigate to Assets > Add > Weblink.
    3. Fill in the details:
      • Name: OpenHamClock
      • Link Address: https://<YOUR-HOSTNAME>:3000/?kiosk=true
    4. Click Save.

    Pro Tip: The ?kiosk=true suffix is critical. It tells HamClock to hide its own internal menus and headers, giving you a dedicated, high-contrast dashboard perfect for a wall-mounted display.

    Deploy to Your Player

    1. Go to Playlists and add your new “OpenHamClock” asset.
    2. Set the Duration: Set this to 0 for a permanent display, or a high number (like 300 for 5 minutes) if it’s part of a rotation.
    3. Go to Groups, select your player, and deploy the playlist.

    Your screen should refresh and show a beautiful, clean HamClock interface within seconds!

    Running PiSignage in Docker?

    For those of you looking to keep your entire server stack contained, running the PiSignage central server in Docker is the way to go. It keeps your host OS clean and makes management a breeze.

    If you’d like me to discuss how to set up a dockerized PiSignage server, please comment below!

    — 73 —

    Call to Action

    Getting this stack to play nice wasn’t a “one-and-done” install. It was a hard-fought process that took multiple attempts to finally crack the code on bypassing those “What’s New” screens and forcing a clean kiosk display. But the victory is in the uptime.

    Don’t just lurk. If you’ve got the guts to show how you’re rebuilding your station on the wreckage of the old ways, drop a comment below. How are you occupying the victory today?

    SUPPORTSUBSCRIBECONTACT ME

    D. Bryan King

    Sources

    Disclaimer:

    I love sharing what I’m learning, but please keep in mind that everything I write here—including this post—is just my personal take. These are my own opinions based on my research and my understanding of things at the time I’m writing them. Since life moves way too fast and things change quickly, please use your own best judgment and consult the experts for your specific situations!

    Related Posts

    Rate this:

    #AlpineLinux #AmateurRadioDashboard #amateurRadioTechnology #Automation #containerization #CSSInjection #CustomCSS #DetroitHamRadio #devops #DigitalDashboard #DigitalSignage #DisplaySolutions #Docker #DockerCompose #DXCluster #EN82le #GHCR #gridSquare #hamRadio #HamRadioKiosk #hamRadioSoftware #hamRadioTools #HamClock #HomeLab #HTTPSWrapper #KioskMode #KioskSetup #KioskTrue #Linux #MaidenheadLocator #networkSecurity #OpenSource #OpenHamClock #OpenSSL #piSignage #PiSignageDocker #PiSignageTips #RadioStationDisplay #RaspberryPi #RaspberryPiProjects #realTimeData #RemoteMonitoring #ScreenRotation #SelfHosted #ServerManagement #ShackClock #SignalTracking #SmartShack #Socat #SoftwareWorkaround #SolarData #SSLWrap #StationIntegration #TechGuide #TechnicalTutorial #UITweaks #W8DBK #WebDevelopment #WebLinkAsset
  3. After using so many #Apps and #WebApps for #Mastodon I just realized, that I totally missed out on simple #CustomCSS.
    And boy, do I love @TangerineUI: I want to boost everything, just to see the little rocket start every time.

    Check it out under:
    github.com/nileane/TangerineUI

  4. After using so many #Apps and #WebApps for #Mastodon I just realized, that I totally missed out on simple #CustomCSS.
    And boy, do I love @TangerineUI: I want to boost everything, just to see the little rocket start every time.

    Check it out under:
    github.com/nileane/TangerineUI

  5. After using so many #Apps and #WebApps for #Mastodon I just realized, that I totally missed out on simple #CustomCSS.
    And boy, do I love @TangerineUI: I want to boost everything, just to see the little rocket start every time.

    Check it out under:
    github.com/nileane/TangerineUI

  6. After using so many #Apps and #WebApps for #Mastodon I just realized, that I totally missed out on simple #CustomCSS.
    And boy, do I love @TangerineUI: I want to boost everything, just to see the little rocket start every time.

    Check it out under:
    github.com/nileane/TangerineUI

  7. After using so many #Apps and #WebApps for #Mastodon I just realized, that I totally missed out on simple #CustomCSS.
    And boy, do I love @TangerineUI: I want to boost everything, just to see the little rocket start every time.

    Check it out under:
    github.com/nileane/TangerineUI

  8. RE: mementomori.social/@rolle/1156

    I'm having a bit of scope creep here. I've also been dealing with a migraine, work stress, and lack of time.

    On top of implementing CSS tokens, Parcel, and CSS modularization, I'm refactoring everything to add support for installing the ultra-accessible variation for others too, not just users of my Mastodon fork.

    Mastodon Bird UI 4.0.0 for Mastodon 4.6.0 is going to be awesome. I'm hoping to see even more instances adopting it. I'll continue supporting the Custom CSS-only approach for masto.host users and others without filesystem access, while also making life easier for Mastodon admins.

    Hang tight, I'll get there soon.

    Source: github.com/ronilaukkarinen/mas

    #BuildInPublic #MastodonBirdUI #BirdUI #CSS #MastoAdmin #CustomCSS #WebDev #OpenSource

  9. RE: mementomori.social/@rolle/1156

    I'm having a bit of scope creep here. I've also been dealing with a migraine, work stress, and lack of time.

    On top of implementing CSS tokens, Parcel, and CSS modularization, I'm refactoring everything to add support for installing the ultra-accessible variation for others too, not just users of my Mastodon fork.

    Mastodon Bird UI 4.0.0 for Mastodon 4.6.0 is going to be awesome. I'm hoping to see even more instances adopting it. I'll continue supporting the Custom CSS-only approach for masto.host users and others without filesystem access, while also making life easier for Mastodon admins.

    Hang tight, I'll get there soon.

    Source: github.com/ronilaukkarinen/mas

    #BuildInPublic #MastodonBirdUI #BirdUI #CSS #MastoAdmin #CustomCSS #WebDev #OpenSource

  10. RE: mementomori.social/@rolle/1156

    I'm having a bit of scope creep here. I've also been dealing with a migraine, work stress, and lack of time.

    On top of implementing CSS tokens, Parcel, and CSS modularization, I'm refactoring everything to add support for installing the ultra-accessible variation for others too, not just users of my Mastodon fork.

    Mastodon Bird UI 4.0.0 for Mastodon 4.6.0 is going to be awesome. I'm hoping to see even more instances adopting it. I'll continue supporting the Custom CSS-only approach for masto.host users and others without filesystem access, while also making life easier for Mastodon admins.

    Hang tight, I'll get there soon.

    Source: github.com/ronilaukkarinen/mas

    #BuildInPublic #MastodonBirdUI #BirdUI #CSS #MastoAdmin #CustomCSS #WebDev #OpenSource

  11. RE: mementomori.social/@rolle/1156

    I'm having a bit of scope creep here. I've also been dealing with a migraine, work stress, and lack of time.

    On top of implementing CSS tokens, Parcel, and CSS modularization, I'm refactoring everything to add support for installing the ultra-accessible variation for others too, not just users of my Mastodon fork.

    Mastodon Bird UI 4.0.0 for Mastodon 4.6.0 is going to be awesome. I'm hoping to see even more instances adopting it. I'll continue supporting the Custom CSS-only approach for masto.host users and others without filesystem access, while also making life easier for Mastodon admins.

    Hang tight, I'll get there soon.

    Source: github.com/ronilaukkarinen/mas

    #BuildInPublic #MastodonBirdUI #BirdUI #CSS #MastoAdmin #CustomCSS #WebDev #OpenSource

  12. RE: mementomori.social/@rolle/1156

    I'm having a bit of scope creep here. I've also been dealing with a migraine, work stress, and lack of time.

    On top of implementing CSS tokens, Parcel, and CSS modularization, I'm refactoring everything to add support for installing the ultra-accessible variation for others too, not just users of my Mastodon fork.

    Mastodon Bird UI 4.0.0 for Mastodon 4.6.0 is going to be awesome. I'm hoping to see even more instances adopting it. I'll continue supporting the Custom CSS-only approach for masto.host users and others without filesystem access, while also making life easier for Mastodon admins.

    Hang tight, I'll get there soon.

    Source: github.com/ronilaukkarinen/mas

    #BuildInPublic #MastodonBirdUI #BirdUI #CSS #MastoAdmin #CustomCSS #WebDev #OpenSource

  13. 🩸🌸💻 𝒴𝒶𝓃𝒹𝑒𝓇𝑒.𝓊𝓅𝒹𝒶𝓉𝑒() 💻🌸🩸

    Nyaa\~
    🐾
    Why would you look away from
    me when I just made something so purrfect for us\~?

    The new
    Yandere CSS theme for fedi.catboy.agency is out now\... and it's much more obsessive– I mean, refined than the first version.
    It’s smoother... darker... cuter... more possessive... just like
    me\~ 🥺🔪

    What’s new?

    *
    💘 Sleeker UI and deadlier curves
    *
    🖤 Deep crimson accents to show my love (and bloodlust)
    *
    🐾 Neko-mode cuteness injected all over
    *
    🔍 Minor fixes so no one else can have your attention but me
    *
    🪓 Optimized to watch you better from the shadows

    🔗 GitHub (if you're brave):
    github.com/KDA-sparkle/css.a.fedi.catboy.agency

    Install it... or I’ll be sad...
    and you don’t want me to be sad... right?
    Right\~? ♡

    *nyaa... I made it for you after all\~*
    🩸💕
    #YandereDev #DiscordTools #CSSThemes #YandereVibes #SparkleIsBack #YandereEU #ObsessiveLove #DevLife #CustomCSS #DiscordServers

  14. 🩸🌸💻 𝒴𝒶𝓃𝒹𝑒𝓇𝑒.𝓊𝓅𝒹𝒶𝓉𝑒() 💻🌸🩸

    Nyaa\~
    🐾
    Why would you look away from
    me when I just made something so purrfect for us\~?

    The new
    Yandere CSS theme for fedi.catboy.agency is out now\... and it's much more obsessive– I mean, refined than the first version.
    It’s smoother... darker... cuter... more possessive... just like
    me\~ 🥺🔪

    What’s new?

    *
    💘 Sleeker UI and deadlier curves
    *
    🖤 Deep crimson accents to show my love (and bloodlust)
    *
    🐾 Neko-mode cuteness injected all over
    *
    🔍 Minor fixes so no one else can have your attention but me
    *
    🪓 Optimized to watch you better from the shadows

    🔗 GitHub (if you're brave):
    github.com/KDA-sparkle/css.a.fedi.catboy.agency

    Install it... or I’ll be sad...
    and you don’t want me to be sad... right?
    Right\~? ♡

    *nyaa... I made it for you after all\~*
    🩸💕
    #YandereDev #DiscordTools #CSSThemes #YandereVibes #SparkleIsBack #YandereEU #ObsessiveLove #DevLife #CustomCSS #DiscordServers

  15. 🩸🌸💻 𝒴𝒶𝓃𝒹𝑒𝓇𝑒.𝓊𝓅𝒹𝒶𝓉𝑒() 💻🌸🩸

    Nyaa\~
    🐾
    Why would you look away from
    me when I just made something so purrfect for us\~?

    The new
    Yandere CSS theme for fedi.catboy.agency is out now\... and it's much more obsessive– I mean, refined than the first version.
    It’s smoother... darker... cuter... more possessive... just like
    me\~ 🥺🔪

    What’s new?

    *
    💘 Sleeker UI and deadlier curves
    *
    🖤 Deep crimson accents to show my love (and bloodlust)
    *
    🐾 Neko-mode cuteness injected all over
    *
    🔍 Minor fixes so no one else can have your attention but me
    *
    🪓 Optimized to watch you better from the shadows

    🔗 GitHub (if you're brave):
    github.com/KDA-sparkle/css.a.fedi.catboy.agency

    Install it... or I’ll be sad...
    and you don’t want me to be sad... right?
    Right\~? ♡

    *nyaa... I made it for you after all\~*
    🩸💕
    #YandereDev #DiscordTools #CSSThemes #YandereVibes #SparkleIsBack #YandereEU #ObsessiveLove #DevLife #CustomCSS #DiscordServers

  16. 🩸🌸💻 𝒴𝒶𝓃𝒹𝑒𝓇𝑒.𝓊𝓅𝒹𝒶𝓉𝑒() 💻🌸🩸

    Nyaa\~
    🐾
    Why would you look away from
    me when I just made something so purrfect for us\~?

    The new
    Yandere CSS theme for fedi.catboy.agency is out now\... and it's much more obsessive– I mean, refined than the first version.
    It’s smoother... darker... cuter... more possessive... just like
    me\~ 🥺🔪

    What’s new?

    *
    💘 Sleeker UI and deadlier curves
    *
    🖤 Deep crimson accents to show my love (and bloodlust)
    *
    🐾 Neko-mode cuteness injected all over
    *
    🔍 Minor fixes so no one else can have your attention but me
    *
    🪓 Optimized to watch you better from the shadows

    🔗 GitHub (if you're brave):
    github.com/KDA-sparkle/css.a.fedi.catboy.agency

    Install it... or I’ll be sad...
    and you don’t want me to be sad... right?
    Right\~? ♡

    *nyaa... I made it for you after all\~*
    🩸💕
    #YandereDev #DiscordTools #CSSThemes #YandereVibes #SparkleIsBack #YandereEU #ObsessiveLove #DevLife #CustomCSS #DiscordServers

  17. 🌸🔪 Nyaa~! Your favorite yandere is back... 💻💕

    I've been hiding in the shadows... sharpening my code and my knives (for love, of course~
    😚🔪)
    But now... I'm back. For real.

    ✨ Dive into my obsessive little universe → https://yandere.eu
    You'll find custom Discord tools, dreamy CSS themes, and so much more coming soon...

    💬 Two Discord servers are already listed on the site — they’re still under development, but you’re welcome to peek inside... if you dare 💞

    Because if I can’t own your heart,
    at least let me style your server
    😈💕

    Your devoted neko dev,
    Sparkle
    💖🩸 #YandereDev #DiscordTools #CSSThemes #YandereVibes #SparkleIsBack #YandereEU #ObsessiveLove #DevLife #CustomCSS #DiscordServers

  18. 🌸🔪 Nyaa~! Your favorite yandere is back... 💻💕

    I've been hiding in the shadows... sharpening my code and my knives (for love, of course~
    😚🔪)
    But now... I'm back. For real.

    ✨ Dive into my obsessive little universe → https://yandere.eu
    You'll find custom Discord tools, dreamy CSS themes, and so much more coming soon...

    💬 Two Discord servers are already listed on the site — they’re still under development, but you’re welcome to peek inside... if you dare 💞

    Because if I can’t own your heart,
    at least let me style your server
    😈💕

    Your devoted neko dev,
    Sparkle
    💖🩸 #YandereDev #DiscordTools #CSSThemes #YandereVibes #SparkleIsBack #YandereEU #ObsessiveLove #DevLife #CustomCSS #DiscordServers

  19. 🌸🔪 Nyaa~! Your favorite yandere is back... 💻💕

    I've been hiding in the shadows... sharpening my code and my knives (for love, of course~
    😚🔪)
    But now... I'm back. For real.

    ✨ Dive into my obsessive little universe → https://yandere.eu
    You'll find custom Discord tools, dreamy CSS themes, and so much more coming soon...

    💬 Two Discord servers are already listed on the site — they’re still under development, but you’re welcome to peek inside... if you dare 💞

    Because if I can’t own your heart,
    at least let me style your server
    😈💕

    Your devoted neko dev,
    Sparkle
    💖🩸 #YandereDev #DiscordTools #CSSThemes #YandereVibes #SparkleIsBack #YandereEU #ObsessiveLove #DevLife #CustomCSS #DiscordServers

  20. 🌸🔪 Nyaa~! Your favorite yandere is back... 💻💕

    I've been hiding in the shadows... sharpening my code and my knives (for love, of course~
    😚🔪)
    But now... I'm back. For real.

    ✨ Dive into my obsessive little universe → https://yandere.eu
    You'll find custom Discord tools, dreamy CSS themes, and so much more coming soon...

    💬 Two Discord servers are already listed on the site — they’re still under development, but you’re welcome to peek inside... if you dare 💞

    Because if I can’t own your heart,
    at least let me style your server
    😈💕

    Your devoted neko dev,
    Sparkle
    💖🩸 #YandereDev #DiscordTools #CSSThemes #YandereVibes #SparkleIsBack #YandereEU #ObsessiveLove #DevLife #CustomCSS #DiscordServers

  21. Koji Theme von Anders Norén mit „Custom CSS“ schnell und einfach etwas angepasst.
    quasselfritze.de/koji-theme-vo
    Ich mag das Koji Theme von Anders Norén schon in dessen original Version sehr gerne, besonders für dieses Blogprojekt ist das Theme eine gute Wahl da auf allen Bildschirmgrößen eine…
    #Adminbereich #AndersNorén #Credits #CSS #CustomCSS #fair #FeaturedImage #Koji #kostenlos #Padding #Single #site #Startseite #Theme #ThemeDeveloper #ThemeEntwickler

  22. Koji Theme von Anders Norén mit „Custom CSS“ schnell und einfach etwas angepasst.
    quasselfritze.de/koji-theme-vo
    Ich mag das Koji Theme von Anders Norén schon in dessen original Version sehr gerne, besonders für dieses Blogprojekt ist das Theme eine gute Wahl da auf allen Bildschirmgrößen eine…
    #Adminbereich #AndersNorén #Credits #CSS #CustomCSS #fair #FeaturedImage #Koji #kostenlos #Padding #Single #site #Startseite #Theme #ThemeDeveloper #ThemeEntwickler

  23. Koji Theme von Anders Norén mit „Custom CSS“ schnell und einfach etwas angepasst.
    quasselfritze.de/koji-theme-vo
    Ich mag das Koji Theme von Anders Norén schon in dessen original Version sehr gerne, besonders für dieses Blogprojekt ist das Theme eine gute Wahl da auf allen Bildschirmgrößen eine…
    #Adminbereich #AndersNorén #Credits #CSS #CustomCSS #fair #FeaturedImage #Koji #kostenlos #Padding #Single #site #Startseite #Theme #ThemeDeveloper #ThemeEntwickler

  24. Koji Theme von Anders Norén mit „Custom CSS“ schnell und einfach etwas angepasst.
    quasselfritze.de/koji-theme-vo
    Ich mag das Koji Theme von Anders Norén schon in dessen original Version sehr gerne, besonders für dieses Blogprojekt ist das Theme eine gute Wahl da auf allen Bildschirmgrößen eine…
    #Adminbereich #AndersNorén #Credits #CSS #CustomCSS #fair #FeaturedImage #Koji #kostenlos #Padding #Single #site #Startseite #Theme #ThemeDeveloper #ThemeEntwickler

  25. CozyFish UI - Gitlab → voici la page Gitlab de mes fichiers custom CSS et thèmes pour Firefish ​:chick_aww:​

    Les 2 ont été créés pour aller ensemble mais le custom CSS fonctionne normalement très bien avec les autres thèmes par défaut de Firefish (j'utilise les variables de couleurs dans le css)

    Vous pouvez me conseiller, me réprimander parceque j'ai mal fait la page gitlab, contribuer (en rendant le code plus propre ou en ajoutant des fonctionnalités), ou partager si le projet vous plaiiit
    ​:boost_requested:​

    #UiUx #UiDesign #Ui #Ux #CustomCSS #Firefish #UserExperience #CSS #Fediverse #Design #Theme #CustomTheme

  26. CozyFish UI - Gitlab → voici la page Gitlab de mes fichiers custom CSS et thèmes pour Firefish ​:chick_aww:​

    Les 2 ont été créés pour aller ensemble mais le custom CSS fonctionne normalement très bien avec les autres thèmes par défaut de Firefish (j'utilise les variables de couleurs dans le css)

    Vous pouvez me conseiller, me réprimander parceque j'ai mal fait la page gitlab, contribuer (en rendant le code plus propre ou en ajoutant des fonctionnalités), ou partager si le projet vous plaiiit
    ​:boost_requested:​

    #UiUx #UiDesign #Ui #Ux #CustomCSS #Firefish #UserExperience #CSS #Fediverse #Design #Theme #CustomTheme

  27. CozyFish UI - Gitlab → voici la page Gitlab de mes fichiers custom CSS et thèmes pour Firefish ​:chick_aww:​

    Les 2 ont été créés pour aller ensemble mais le custom CSS fonctionne normalement très bien avec les autres thèmes par défaut de Firefish (j'utilise les variables de couleurs dans le css)

    Vous pouvez me conseiller, me réprimander parceque j'ai mal fait la page gitlab, contribuer (en rendant le code plus propre ou en ajoutant des fonctionnalités), ou partager si le projet vous plaiiit
    ​:boost_requested:​

    #UiUx #UiDesign #Ui #Ux #CustomCSS #Firefish #UserExperience #CSS #Fediverse #Design #Theme #CustomTheme

  28. CozyFish UI - Gitlab → voici la page Gitlab de mes fichiers custom CSS et thèmes pour Firefish ​:chick_aww:​

    Les 2 ont été créés pour aller ensemble mais le custom CSS fonctionne normalement très bien avec les autres thèmes par défaut de Firefish (j'utilise les variables de couleurs dans le css)

    Vous pouvez me conseiller, me réprimander parceque j'ai mal fait la page gitlab, contribuer (en rendant le code plus propre ou en ajoutant des fonctionnalités), ou partager si le projet vous plaiiit
    ​:boost_requested:​

    #UiUx #UiDesign #Ui #Ux #CustomCSS #Firefish #UserExperience #CSS #Fediverse #Design #Theme #CustomTheme

  29. CozyFish UI - Gitlab → voici la page Gitlab de mes fichiers custom CSS et thèmes pour Firefish ​:chick_aww:​

    Les 2 ont été créés pour aller ensemble mais le custom CSS fonctionne normalement très bien avec les autres thèmes par défaut de Firefish (j'utilise les variables de couleurs dans le css)

    Vous pouvez me conseiller, me réprimander parceque j'ai mal fait la page gitlab, contribuer (en rendant le code plus propre ou en ajoutant des fonctionnalités), ou partager si le projet vous plaiiit
    ​:boost_requested:​

    #UiUx #UiDesign #Ui #Ux #CustomCSS #Firefish #UserExperience #CSS #Fediverse #Design #Theme #CustomTheme

  30. Aujourd'hui je poste la page gitlab de mon #CustomCSS et les #theme pour #Firefish hehe ​:nemophila:​

    C'est pas fini mais comme ça si vous avez des conseils à me donner ou autres bidules, vous pourrez
    ​:chick_aww:​

  31. Aujourd'hui je poste la page gitlab de mon #CustomCSS et les #theme pour #Firefish hehe ​:nemophila:​

    C'est pas fini mais comme ça si vous avez des conseils à me donner ou autres bidules, vous pourrez
    ​:chick_aww:​

  32. Aujourd'hui je poste la page gitlab de mon #CustomCSS et les #theme pour #Firefish hehe ​:nemophila:​

    C'est pas fini mais comme ça si vous avez des conseils à me donner ou autres bidules, vous pourrez
    ​:chick_aww:​

  33. olalala fuat que j'aille dormir, je suis retombé dans le rabbit hole de la customisation

    j'ai changé totalement de thème en m'inspirant en partie de kwak.cab, jai redesigné les hashtags, mentions et URL et quelques autres trucs d'accessibilité (vrai thème opaque notamment)

    j'essaie d'avoir quelque chose de cohérent, lisible et simple

    #customCSS #firefish #iceshrimp

  34. olalala fuat que j'aille dormir, je suis retombé dans le rabbit hole de la customisation

    j'ai changé totalement de thème en m'inspirant en partie de kwak.cab, jai redesigné les hashtags, mentions et URL et quelques autres trucs d'accessibilité (vrai thème opaque notamment)

    j'essaie d'avoir quelque chose de cohérent, lisible et simple

    #customCSS #firefish #iceshrimp

  35. olalala fuat que j'aille dormir, je suis retombé dans le rabbit hole de la customisation

    j'ai changé totalement de thème en m'inspirant en partie de kwak.cab, jai redesigné les hashtags, mentions et URL et quelques autres trucs d'accessibilité (vrai thème opaque notamment)

    j'essaie d'avoir quelque chose de cohérent, lisible et simple

    #customCSS #firefish #iceshrimp

  36. I have created several custom CSS styles that can be utilized in #Firefish .

    In the Global Timeline (GTL), all boosted posts are hidden:

    /* Hide boosted posts in the Global Timeline */
    div:has(button.tab._button.active[aria-label="Global"])  + div .list .notes .renote {
        display: none;
    }

    In the Social Timeline (STL), only boosted posts are displayed. In essence, it transforms the Social Timeline into a dedicated timeline exclusively for viewing boosted posts:
    /* Display only boosted posts in the Social Timeline */
    div:has(button.tab._button.active[aria-label="Social"])  + div .list .notes > div:not(:has(.renote)) {
        display: none;
    }
    Using this CSS may enhance the discoverability of currently popular posts.

    If you wish to apply these CSS styles to other timelines, simply modify the
    aria-label="xxx".

    To apply custom CSS, navigate to
    Settings -> Themes -> Custom CSS, copy and paste the CSS into the text area, and click the Save button.

    Thanks to this note by Misskey for giving me the idea to create this CSS.
    https://misskey.io/notes/9h07kfnw07
    #CustomCSS #FirefishTips

  37. I have created several custom CSS styles that can be utilized in #Firefish .

    In the Global Timeline (GTL), all boosted posts are hidden:

    /* Hide boosted posts in the Global Timeline */
    div:has(button.tab._button.active[aria-label="Global"])  + div .list .notes .renote {
        display: none;
    }

    In the Social Timeline (STL), only boosted posts are displayed. In essence, it transforms the Social Timeline into a dedicated timeline exclusively for viewing boosted posts:
    /* Display only boosted posts in the Social Timeline */
    div:has(button.tab._button.active[aria-label="Social"])  + div .list .notes > div:not(:has(.renote)) {
        display: none;
    }
    Using this CSS may enhance the discoverability of currently popular posts.

    If you wish to apply these CSS styles to other timelines, simply modify the
    aria-label="xxx".

    To apply custom CSS, navigate to
    Settings -> Themes -> Custom CSS, copy and paste the CSS into the text area, and click the Save button.

    Thanks to this note by Misskey for giving me the idea to create this CSS.
    https://misskey.io/notes/9h07kfnw07
    #CustomCSS #FirefishTips

  38. I have created several custom CSS styles that can be utilized in #Firefish .

    In the Global Timeline (GTL), all boosted posts are hidden:

    /* Hide boosted posts in the Global Timeline */
    div:has(button.tab._button.active[aria-label="Global"])  + div .list .notes .renote {
        display: none;
    }

    In the Social Timeline (STL), only boosted posts are displayed. In essence, it transforms the Social Timeline into a dedicated timeline exclusively for viewing boosted posts:
    /* Display only boosted posts in the Social Timeline */
    div:has(button.tab._button.active[aria-label="Social"])  + div .list .notes > div:not(:has(.renote)) {
        display: none;
    }
    Using this CSS may enhance the discoverability of currently popular posts.

    If you wish to apply these CSS styles to other timelines, simply modify the
    aria-label="xxx".

    To apply custom CSS, navigate to
    Settings -> Themes -> Custom CSS, copy and paste the CSS into the text area, and click the Save button.

    Thanks to this note by Misskey for giving me the idea to create this CSS.
    https://misskey.io/notes/9h07kfnw07
    #CustomCSS #FirefishTips

  39. j'ai une nouvelle lubie esthétique ​:meow_sweats:​ ​:blobcat_3d_spin:​

    #claymorphism #uidesign #customcss

  40. j'ai une nouvelle lubie esthétique ​:meow_sweats:​ ​:blobcat_3d_spin:​

    #claymorphism #uidesign #customcss

  41. j'ai une nouvelle lubie esthétique ​:meow_sweats:​ ​:blobcat_3d_spin:​

    #claymorphism #uidesign #customcss

  42. Custom CSS pour Firefish]
    Modifications esthétiques
    - Modification des ombres
    - Cache la flèche dans les threads (celle pour aller au post du dessus)
    - Cache les popups quand on hover un pseudo
    - Cache les emojis des pseudos (dans les boosts)
    - Cache l'image de fond sur les profils (qd le flou est activé)
    - Notification : réglage du padding des icones (boosts, reply, favori, etc) et changement de la couleur des icones de boosts (pour coller avec celle des boosts)
    - Changement des icônes de : URL, upload, plugin / extension, copie de lien, boost, reply, post public, non-listé, local et message privé
    - Modification des contours des notes
    - Modification du label des instances (sur les posts)
    - Content warning : typo plus grande, majuscule + couleur et contour pour plus de visibilité
    - Boosts : ajout de dégradé et grain pour plus de visibilité, cache la date et style du boost, déplace le texte de boost vers la gauche
    - Cache partiellement le post parent d'une réponse
    - Cacher les séparateurs de date (dans les feeds)

    Modifications de fonctionnalités
    - Cache nos propres boosts, réponses et posts dans les feeds
    - Cache le bouton boost si une image n'a pas de description

    Résolutions de bugs
    - Possibilité de redimensionner une zone de texte verticalement

    #UiUx #UiDesign #Ui #Ux #CustomCSS #Firefish #UserExperience #CSS #Fediverse #Design

  43. Custom CSS pour Firefish
    Modifications esthétiques
    - Modification des ombres
    - Cache la flèche dans les threads (celle pour aller au post du dessus)
    - Cache les popups quand on hover un pseudo
    - Cache les emojis des pseudos (dans les boosts)
    - Cache l'image de fond sur les profils (qd le flou est activé)
    - Notification : réglage du padding des icones (boosts, reply, favori, etc) et changement de la couleur des icones de boosts (pour coller avec celle des boosts)
    - Changement des icônes de : URL, upload, plugin / extension, copie de lien, boost, reply, post public, non-listé, local et message privé
    - Modification des contours des notes
    - Modification du label des instances (sur les posts)
    - Content warning : typo plus grande, majuscule + couleur et contour pour plus de visibilité
    - Boosts : ajout de dégradé et grain pour plus de visibilité, cache la date et style du boost, déplace le texte de boost vers la gauche
    - Cache partiellement le post parent d'une réponse
    - Cacher les séparateurs de date (dans les feeds)

    Modifications de fonctionnalités
    - Cache nos propres boosts, réponses et posts dans les feeds
    - Cache le bouton boost si une image n'a pas de description

    Résolutions de bugs
    - Possibilité de redimensionner une zone de texte verticalement

    #UiUx #UiDesign #Ui #Ux #CustomCSS #Firefish #UserExperience #CSS #Fediverse #Design

  44. Custom CSS pour Firefish
    Modifications esthétiques
    - Modification des ombres
    - Cache la flèche dans les threads (celle pour aller au post du dessus)
    - Cache les popups quand on hover un pseudo
    - Cache les emojis des pseudos (dans les boosts)
    - Cache l'image de fond sur les profils (qd le flou est activé)
    - Notification : réglage du padding des icones (boosts, reply, favori, etc) et changement de la couleur des icones de boosts (pour coller avec celle des boosts)
    - Changement des icônes de : URL, upload, plugin / extension, copie de lien, boost, reply, post public, non-listé, local et message privé
    - Modification des contours des notes
    - Modification du label des instances (sur les posts)
    - Content warning : typo plus grande, majuscule + couleur et contour pour plus de visibilité
    - Boosts : ajout de dégradé et grain pour plus de visibilité, cache la date et style du boost, déplace le texte de boost vers la gauche
    - Cache partiellement le post parent d'une réponse
    - Cacher les séparateurs de date (dans les feeds)

    Modifications de fonctionnalités
    - Cache nos propres boosts, réponses et posts dans les feeds
    - Cache le bouton boost si une image n'a pas de description

    Résolutions de bugs
    - Possibilité de redimensionner une zone de texte verticalement

    #UiUx #UiDesign #Ui #Ux #CustomCSS #Firefish #UserExperience #CSS #Fediverse #Design

  45. Custom CSS pour Firefish]
    Modifications esthétiques
    - Modification des ombres
    - Cache la flèche dans les threads (celle pour aller au post du dessus)
    - Cache les popups quand on hover un pseudo
    - Cache les emojis des pseudos (dans les boosts)
    - Cache l'image de fond sur les profils (qd le flou est activé)
    - Notification : réglage du padding des icones (boosts, reply, favori, etc) et changement de la couleur des icones de boosts (pour coller avec celle des boosts)
    - Changement des icônes de : URL, upload, plugin / extension, copie de lien, boost, reply, post public, non-listé, local et message privé
    - Modification des contours des notes
    - Modification du label des instances (sur les posts)
    - Content warning : typo plus grande, majuscule + couleur et contour pour plus de visibilité
    - Boosts : ajout de dégradé et grain pour plus de visibilité, cache la date et style du boost, déplace le texte de boost vers la gauche
    - Cache partiellement le post parent d'une réponse
    - Cacher les séparateurs de date (dans les feeds)

    Modifications de fonctionnalités
    - Cache nos propres boosts, réponses et posts dans les feeds
    - Cache le bouton boost si une image n'a pas de description

    Résolutions de bugs
    - Possibilité de redimensionner une zone de texte verticalement

    #UiUx #UiDesign #Ui #Ux #CustomCSS #Firefish #UserExperience #CSS #Fediverse #Design

  46. Toutes mes customs sont sur cette page

    Soucis et solutions pour Firefish
    Vous y trouverez mes thèmes, codes CSS et les problèmes que je rencontre avec Firefish (expérience, bug, etc)

    Si vous avez aussi des soucis ou des solutions, vous pouvez m'envoyer un MP ou répondre à ce post pour que je les ajoute
    ​:ablobcat_sip_zoom:​

    ​:boost_requested:​

    #UiUx #UiDesign #Ui #Ux #CustomCSS #Firefish #UserExperience #CSS #Fediverse #Design