Last active
May 31, 2023 16:15
-
-
Save fluteds/b7bbf2825cc508fe70d85fc3722459de to your computer and use it in GitHub Desktop.
Styles the pronouns from pronouns.alejo.io to look like the pronouns from pronoundb.org on twitch.tv
This file contains hidden or 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
@media (prefers-color-scheme: dark) { | |
.user-pronoun, .chat-line__message .tw-pd-x-05 { | |
color: #fffff; | |
border: 0px; | |
font-weight: normal; | |
background: #6b6b6d; /* Fix correct background */ | |
text-transform: lowercase; | |
} | |
} | |
@media (prefers-color-scheme: light) { | |
.user-pronoun, .chat-line__message .tw-pd-x-05 { | |
color: #00000; | |
border: 0px; | |
font-weight: normal; | |
background: #f2f2f2; | |
text-transform: lowercase; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment