Created
September 27, 2019 19:31
-
-
Save ergosteur/e2dd513ffd0805fb94d27fed10b9cb9e to your computer and use it in GitHub Desktop.
shrink the Follow header on new Twitch redesign
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 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