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
| /* TEST: make everything go weird colors so we KNOW it's working */ | |
| @keyframes colorhue { | |
| from { filter: hue-rotate(0deg); } | |
| to { filter: hue-rotate(359deg); } | |
| } | |
| /* .edit is the class Gamepad Viewer adds when using editcss= */ | |
| .edit { | |
| animation: colorhue 1s linear infinite; |