Skip to content

Instantly share code, notes, and snippets.

@meow-d
Last active December 7, 2024 07:43
Show Gist options
  • Save meow-d/c0b2a3e038c2abf76798c0b9fb9d371e to your computer and use it in GitHub Desktop.
Save meow-d/c0b2a3e038c2abf76798c0b9fb9d371e to your computer and use it in GitHub Desktop.
/* ==UserStyle==
@name get rotated ahahahahahaahahahahah
@namespace what do you even put here
@version 1.0.4
@author meow_d
==/UserStyle== */
@-moz-document domain("wetdry.world"), domain("blahaj.zone"), domain("bsky.app"), domain("aglais.pages.dev") {
@keyframes rotate {
to {
transform: rotate(360deg);
}
}
@keyframes rotate-reverse {
from {
transform: rotate(360deg);
}
}
}
@-moz-document domain("wetdry.world") {
div[data-avatar-of="@rini"] {
background-color: #DAEAFA !important;
overflow: clip;
}
div[data-avatar-of="@rini"] > img {
animation: rotate 1.5s linear infinite;
}
div[data-avatar-of="@vozercozer"] {
background-color: #80172D !important;
overflow: clip;
}
div[data-avatar-of="@vozercozer"] > img {
animation: rotate-reverse 1.5s linear infinite;
}
}
@-moz-document domain("blahaj.zone") {
[title="rini@wetdry.world"] {
background-color: #DAEAFA !important;
overflow: clip;
}
[title="rini@wetdry.world"] > div > img {
animation: rotate 1.5s linear infinite;
}
[title="vozercozer@wetdry.world"] {
background-color: #80172D !important;
overflow: clip;
}
[title="vozercozer@wetdry.world"] > div > img {
animation: rotate-reverse 1.5s linear infinite;
}
}
@-moz-document domain("bsky.app") {
div[style*="did:plc:2xzwxnrpxbosvotzctbr46jq"] {
animation: rotate 1.5s linear infinite;
}
div[style*="did:plc:iae6x3wafji4eznlimtnzfww"] {
animation: rotate-reverse 1.5s linear infinite;
}
}
@-moz-document domain("aglais.pages.dev") {
img[src^="https://cdn.bsky.app/img/avatar/plain/did:plc:2xzwxnrpxbosvotzctbr46jq/"],
img[src^="https://cdn.bsky.app/img/avatar_thumbnail/plain/did:plc:2xzwxnrpxbosvotzctbr46jq/"] {
animation: rotate 1.5s linear infinite;
}
img[src^="https://cdn.bsky.app/img/avatar/plain/did:plc:iae6x3wafji4eznlimtnzfww/"],
img[src^="https://cdn.bsky.app/img/avatar_thumbnail/plain/did:plc:iae6x3wafji4eznlimtnzfww/"] {
animation: rotate-reverse 1.5s linear infinite;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment