Last active
September 6, 2020 11:48
-
-
Save nicholastay/fbf895eeb681dd19625b16017c7f1e74 to your computer and use it in GitHub Desktop.
Just some random twitch css stuff (fade topbar + hide following button)
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
@-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