Skip to content

Instantly share code, notes, and snippets.

@kardolus
Created February 26, 2019 23:55
Show Gist options
  • Save kardolus/b276c9a9388f86c78f6873251e4a9957 to your computer and use it in GitHub Desktop.
Save kardolus/b276c9a9388f86c78f6873251e4a9957 to your computer and use it in GitHub Desktop.
setInterval(() => {
[...document.getElementsByClassName("succeeded")].forEach((e) => {
e.style.background = '#328856';
});
[...document.getElementsByClassName("inner")].forEach((e) => {
e.style.whiteSpace = 'initial';
e.style.fontSize = '40px';
});
}, 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment