#customcss — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #customcss, aggregated by home.social.
-
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
socatandopenssl.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-stopped2. 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
- Log in to your PiSignage Admin Panel.
- Navigate to Assets > Add > Weblink.
- Fill in the details:
- Name: OpenHamClock
- Link Address:
https://<YOUR-HOSTNAME>:3000/?kiosk=true
- Click Save.
Pro Tip: The
?kiosk=truesuffix 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
- Go to Playlists and add your new “OpenHamClock” asset.
- Set the Duration: Set this to
0for a permanent display, or a high number (like300for 5 minutes) if it’s part of a rotation. - 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 MED. Bryan King
Sources
- OpenHamClock GitHub Repository (accius)
- Original HamClock Source by Clear Sky Institute
- PiSignage Official Documentation
- Docker Compose Specification and Documentation
- Alpine Linux Official Docker Image
- Socat Man Page – Multipurpose Relay Tool
- OpenSSL Official Documentation
- Maidenhead Locator System Overview
- Deep Dive: HamClock on Raspberry Pi
- PiSignage Server Docker Implementation
- Raspberry Pi Kiosk Mode Configuration
- MDN Web Docs: CSS Display Property
- Docker CMD vs Entrypoint Explained
- Understanding Self-Signed SSL Certificates
- ARRL: Understanding Grid Squares
- CSS Attribute Selectors (For Style Injection)
- Docker Container Networking Guide
- Linux Find Command Documentation
- Portainer: Managing Dockerized Signage Stacks
- PiSignage Community Support Forum
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 -
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
socatandopenssl.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-stopped2. 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
- Log in to your PiSignage Admin Panel.
- Navigate to Assets > Add > Weblink.
- Fill in the details:
- Name: OpenHamClock
- Link Address:
https://<YOUR-HOSTNAME>:3000/?kiosk=true
- Click Save.
Pro Tip: The
?kiosk=truesuffix 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
- Go to Playlists and add your new “OpenHamClock” asset.
- Set the Duration: Set this to
0for a permanent display, or a high number (like300for 5 minutes) if it’s part of a rotation. - 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 MED. Bryan King
Sources
- OpenHamClock GitHub Repository (accius)
- Original HamClock Source by Clear Sky Institute
- PiSignage Official Documentation
- Docker Compose Specification and Documentation
- Alpine Linux Official Docker Image
- Socat Man Page – Multipurpose Relay Tool
- OpenSSL Official Documentation
- Maidenhead Locator System Overview
- Deep Dive: HamClock on Raspberry Pi
- PiSignage Server Docker Implementation
- Raspberry Pi Kiosk Mode Configuration
- MDN Web Docs: CSS Display Property
- Docker CMD vs Entrypoint Explained
- Understanding Self-Signed SSL Certificates
- ARRL: Understanding Grid Squares
- CSS Attribute Selectors (For Style Injection)
- Docker Container Networking Guide
- Linux Find Command Documentation
- Portainer: Managing Dockerized Signage Stacks
- PiSignage Community Support Forum
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 -
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:
https://github.com/nileane/TangerineUI-for-Mastodon/tree/main -
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:
https://github.com/nileane/TangerineUI-for-Mastodon/tree/main -
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:
https://github.com/nileane/TangerineUI-for-Mastodon/tree/main -
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:
https://github.com/nileane/TangerineUI-for-Mastodon/tree/main -
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:
https://github.com/nileane/TangerineUI-for-Mastodon/tree/main -
RE: https://mementomori.social/@rolle/115679600302861278
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: https://github.com/ronilaukkarinen/mastodon-bird-ui/tree/dev-build-system-css-theme-tokens
#BuildInPublic #MastodonBirdUI #BirdUI #CSS #MastoAdmin #CustomCSS #WebDev #OpenSource
-
RE: https://mementomori.social/@rolle/115679600302861278
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: https://github.com/ronilaukkarinen/mastodon-bird-ui/tree/dev-build-system-css-theme-tokens
#BuildInPublic #MastodonBirdUI #BirdUI #CSS #MastoAdmin #CustomCSS #WebDev #OpenSource
-
RE: https://mementomori.social/@rolle/115679600302861278
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: https://github.com/ronilaukkarinen/mastodon-bird-ui/tree/dev-build-system-css-theme-tokens
#BuildInPublic #MastodonBirdUI #BirdUI #CSS #MastoAdmin #CustomCSS #WebDev #OpenSource
-
RE: https://mementomori.social/@rolle/115679600302861278
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: https://github.com/ronilaukkarinen/mastodon-bird-ui/tree/dev-build-system-css-theme-tokens
#BuildInPublic #MastodonBirdUI #BirdUI #CSS #MastoAdmin #CustomCSS #WebDev #OpenSource
-
RE: https://mementomori.social/@rolle/115679600302861278
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: https://github.com/ronilaukkarinen/mastodon-bird-ui/tree/dev-build-system-css-theme-tokens
#BuildInPublic #MastodonBirdUI #BirdUI #CSS #MastoAdmin #CustomCSS #WebDev #OpenSource
-
🩸🌸💻 𝒴𝒶𝓃𝒹𝑒𝓇𝑒.𝓊𝓅𝒹𝒶𝓉𝑒() 💻🌸🩸
Nyaa\~ 🐾
Why would you look away from me when I just made something so purrfect for us\~?
The new Yandere CSS theme forfedi.catboy.agencyis 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 -
🩸🌸💻 𝒴𝒶𝓃𝒹𝑒𝓇𝑒.𝓊𝓅𝒹𝒶𝓉𝑒() 💻🌸🩸
Nyaa\~ 🐾
Why would you look away from me when I just made something so purrfect for us\~?
The new Yandere CSS theme forfedi.catboy.agencyis 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 -
🩸🌸💻 𝒴𝒶𝓃𝒹𝑒𝓇𝑒.𝓊𝓅𝒹𝒶𝓉𝑒() 💻🌸🩸
Nyaa\~ 🐾
Why would you look away from me when I just made something so purrfect for us\~?
The new Yandere CSS theme forfedi.catboy.agencyis 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 -
🩸🌸💻 𝒴𝒶𝓃𝒹𝑒𝓇𝑒.𝓊𝓅𝒹𝒶𝓉𝑒() 💻🌸🩸
Nyaa\~ 🐾
Why would you look away from me when I just made something so purrfect for us\~?
The new Yandere CSS theme forfedi.catboy.agencyis 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 -
🌸🔪 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 -
🌸🔪 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 -
🌸🔪 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 -
🌸🔪 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 -
Koji Theme von Anders Norén mit „Custom CSS“ schnell und einfach etwas angepasst.
https://quasselfritze.de/koji-theme-von-anders-noren-mit-custom-css-einfach-etwas-anpassen/allgemein/12/02/2025/
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 -
Koji Theme von Anders Norén mit „Custom CSS“ schnell und einfach etwas angepasst.
https://quasselfritze.de/koji-theme-von-anders-noren-mit-custom-css-einfach-etwas-anpassen/allgemein/12/02/2025/
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 -
Koji Theme von Anders Norén mit „Custom CSS“ schnell und einfach etwas angepasst.
https://quasselfritze.de/koji-theme-von-anders-noren-mit-custom-css-einfach-etwas-anpassen/allgemein/12/02/2025/
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 -
Koji Theme von Anders Norén mit „Custom CSS“ schnell und einfach etwas angepasst.
https://quasselfritze.de/koji-theme-von-anders-noren-mit-custom-css-einfach-etwas-anpassen/allgemein/12/02/2025/
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 -
Koji ersetzt Lingonberry als Theme auf dem QuasselFritze.
https://quasselfritze.de/koji-ersetzt-lingonberry-als-theme-auf-dem-quasselfritze/allgemein/11/02/2025/
So für den Anfang war das Lingonberry Theme von Anders Norén ganz passabel sowie ausreichend gewesen um mit dem Theme den Neustart dieses Blogproje…
#AlexanderAgnarson #AndersNorén #Ausblick #Blogprojekt #CustomCSS #DarkMode #Darstellung #DunkelModus #frickeln #GEIL #GridStyle #HamiltonTheme #Index #KojiTheme #LingonberryTheme #MasonryGallery #MasonryGridStyle #P2Theme #Startseite -
Koji ersetzt Lingonberry als Theme auf dem QuasselFritze.
https://quasselfritze.de/koji-ersetzt-lingonberry-als-theme-auf-dem-quasselfritze/allgemein/11/02/2025/
So für den Anfang war das Lingonberry Theme von Anders Norén ganz passabel sowie ausreichend gewesen um mit dem Theme den Neustart dieses Blogproje…
#AlexanderAgnarson #AndersNorén #Ausblick #Blogprojekt #CustomCSS #DarkMode #Darstellung #DunkelModus #frickeln #GEIL #GridStyle #HamiltonTheme #Index #KojiTheme #LingonberryTheme #MasonryGallery #MasonryGridStyle #P2Theme #Startseite -
Koji ersetzt Lingonberry als Theme auf dem QuasselFritze.
https://quasselfritze.de/koji-ersetzt-lingonberry-als-theme-auf-dem-quasselfritze/allgemein/11/02/2025/
So für den Anfang war das Lingonberry Theme von Anders Norén ganz passabel sowie ausreichend gewesen um mit dem Theme den Neustart dieses Blogproje…
#AlexanderAgnarson #AndersNorén #Ausblick #Blogprojekt #CustomCSS #DarkMode #Darstellung #DunkelModus #frickeln #GEIL #GridStyle #HamiltonTheme #Index #KojiTheme #LingonberryTheme #MasonryGallery #MasonryGridStyle #P2Theme #Startseite -
Koji ersetzt Lingonberry als Theme auf dem QuasselFritze.
https://quasselfritze.de/koji-ersetzt-lingonberry-als-theme-auf-dem-quasselfritze/allgemein/11/02/2025/
So für den Anfang war das Lingonberry Theme von Anders Norén ganz passabel sowie ausreichend gewesen um mit dem Theme den Neustart dieses Blogproje…
#AlexanderAgnarson #AndersNorén #Ausblick #Blogprojekt #CustomCSS #DarkMode #Darstellung #DunkelModus #frickeln #GEIL #GridStyle #HamiltonTheme #Index #KojiTheme #LingonberryTheme #MasonryGallery #MasonryGridStyle #P2Theme #Startseite -
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 -
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 -
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 -
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 -
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 -
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: -
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: -
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: -
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 -
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 -
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 -
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:
Using this CSS may enhance the discoverability of currently popular 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; }
If you wish to apply these CSS styles to other timelines, simply modify thearia-label="xxx".
To apply custom CSS, navigate toSettings->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 -
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:
Using this CSS may enhance the discoverability of currently popular 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; }
If you wish to apply these CSS styles to other timelines, simply modify thearia-label="xxx".
To apply custom CSS, navigate toSettings->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 -
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:
Using this CSS may enhance the discoverability of currently popular 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; }
If you wish to apply these CSS styles to other timelines, simply modify thearia-label="xxx".
To apply custom CSS, navigate toSettings->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 -
j'ai une nouvelle lubie esthétique :meow_sweats: :blobcat_3d_spin:
#claymorphism #uidesign #customcss -
j'ai une nouvelle lubie esthétique :meow_sweats: :blobcat_3d_spin:
#claymorphism #uidesign #customcss -
j'ai une nouvelle lubie esthétique :meow_sweats: :blobcat_3d_spin:
#claymorphism #uidesign #customcss -
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 -
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 -
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 -
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 -
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