Last active
December 7, 2024 07:43
-
-
Save meow-d/c0b2a3e038c2abf76798c0b9fb9d371e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==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