Skip to content

Instantly share code, notes, and snippets.

@ergosteur
Created September 27, 2019 19:31
Show Gist options
  • Save ergosteur/e2dd513ffd0805fb94d27fed10b9cb9e to your computer and use it in GitHub Desktop.
Save ergosteur/e2dd513ffd0805fb94d27fed10b9cb9e to your computer and use it in GitHub Desktop.
shrink the Follow header on new Twitch redesign
@-moz-document url-prefix("https://www.twitch.tv/directory/following") {
h1 {
animation-name: example;
animation-delay: 3s;
animation-duration: 3s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes example {
0% {font-size: 7.2rem;}
100% {font-size: 3.0rem;}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment