Ivan · @LibreIvan
11 followers · 47 posts · Server fosstodon.org

I decided to mod the Mastodon emoji picker with a , and it is pretty darn inefficient. But so is it cool!

(And by the way all of these animations are technically JS-free. Take that, big tech!)

#usercss

Last updated 1 year ago

Steffo · @steffo
97 followers · 859 posts · Server fosstodon.org

Does on have a dark counterpart? Or, alternatively, does anyone know a to change Wikipedia to a dark theme?

#vector2022 #mediawiki #usercss

Last updated 1 year ago

zoe · @zoebytes
0 followers · 4 posts · Server mastodon.social

/* ==UserStyle==
_@name Mastodon - 3-column layout
_@namespace zoebytes.name
_@version 1.0.0
_@author zoebytes
_@license 0BSD
==/UserStyle== */

/* Replace `mastodon.social` below with your instance's domain */

@-moz-document domain("mastodon.social") {
.layout-multiple-columns .columns-area .column {
width: calc((100% - 300px) / 2);
}
}

#usercss

Last updated 2 years ago

· @fontenot
20 followers · 138 posts · Server mastodon.social

Here's a little snippet I'm using to make it more obvious to me when a post has been edited.

abbr[title*="Edited"] {
text-decoration: none;
visibility: hidden;
}

abbr[title*="Edited"]::after {
content: "📝";
visibility: visible;
}

#css #mastodon #userScripts #usercss

Last updated 2 years ago