Skip to content

Instantly share code, notes, and snippets.

@janxious
Last active August 12, 2021 13:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save janxious/88aa52e448d489f4011d992a24f72f21 to your computer and use it in GitHub Desktop.
Save janxious/88aa52e448d489f4011d992a24f72f21 to your computer and use it in GitHub Desktop.
Twitter User Styles
/* ==UserStyle==
@name Make twitter less bad
@namespace github.com/janxious
@version 1.2.0
@description remove the sidebar, outline images without alt tags, change the font to something useful
@author Joel Meador
==/UserStyle== */
@-moz-document domain("twitter.com") {
/* outline images without alt tags */
div[aria-label="Image"] {
border: 2px dotted red;
}
/* hide all sidebar content because it all sucks */
div[data-testid="sidebarColumn"] > div > div > div > div > div > div + div {
display: none;
}
/* user Verdana font instead of the horrible one twitter commissioned */
* {
font-family: verdana !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment