Skip to content

Instantly share code, notes, and snippets.

@nicholastay
Last active September 6, 2020 11:48
Show Gist options
  • Save nicholastay/fbf895eeb681dd19625b16017c7f1e74 to your computer and use it in GitHub Desktop.
Save nicholastay/fbf895eeb681dd19625b16017c7f1e74 to your computer and use it in GitHub Desktop.
Just some random twitch css stuff (fade topbar + hide following button)
@-moz-document domain("twitch.tv") {
.top-nav__menu {
background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #4E367B), color-stop(50%, #A61EB0), color-stop(100%, #AB781A));
background: -webkit-linear-gradient(45deg, #4E367B 0%, #A61EB0 50%, #AB781A 100%);
background: linear-gradient(45deg, #4E367B 0%, #A61EB0 50%, #AB781A 100%);
}
.tw-interactive[data-a-target=user-menu-toggle]:hover {
background: hsla(0,0%,100%,.05) !important;
}
.tw-interactive[data-a-target=user-menu-toggle]:focus {
border-color: hsla(0,0%,100%,.6);
box-shadow: 0 0 6px 0 hsla(0,0%,100%,.3);
outline: 0;
}
.follow-btn__follow-btn--following,
.follow-btn--following {
display: none;
}
* {
font-variant-ligatures: none !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment