Skip to content

Instantly share code, notes, and snippets.

@wryk
Last active June 8, 2018 13:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wryk/ed26bbd1332fb2c122adb37fb78787d1 to your computer and use it in GitHub Desktop.
Save wryk/ed26bbd1332fb2c122adb37fb78787d1 to your computer and use it in GitHub Desktop.
userstyles collection for eldritch.cafe mastodon instance (some of them are experiments)
/* ==UserStyle==
@name column-grow
@namespace eldritch.cafe
@version 1.0.0
@license MIT
==/UserStyle== */
@-moz-document domain("eldritch.cafe") {
.column {
flex-grow: 1;
}
}
/* ==UserStyle==
@name hide-followers-count
@namespace eldritch.cafe
@version 1.0.0
@license MIT
==/UserStyle== */
@-moz-document domain("eldritch.cafe") {
.account__action-bar__tab:nth-child(3) > strong > span,
.counter:nth-child(3) > a > .counter-number{
visibility: hidden;
white-space: nowrap;
}
.account__action-bar__tab:nth-child(3) > strong > span::before,
.counter:nth-child(3) > a > .counter-number::before {
visibility: visible;
content: "⛧666⛧";
}
}
/* ==UserStyle==
@name navigation-column-in-first-position
@namespace eldritch.cafe
@version 1.0.0
@license MIT
==/UserStyle== */
@-moz-document domain("eldritch.cafe") {
.columns-area > *:first-child {
order: 0;
}
.columns-area > *:last-child {
order: 1;
padding-right: 5px;
}
.columns-area > * {
order: 2;
}
.columns-area > *:nth-last-child(2) {
padding-right: 10px;
}
}
/* ==UserStyle==
@name scale-emoji-on-hover
@namespace eldritch.cafe
@version 1.0.0
@license MIT
==/UserStyle== */
@-moz-document domain("eldritch.cafe") {
.status img.emojione,
.detailed-status img.emojione,
.notification img.emojione {
transition: 0.1s;
}
.status img.emojione:hover,
.detailed-status img.emojione:hover,
.notification img.emojione:hover {
transform: scale(4);
position: absolute;
z-index: 666;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment