Skip to content

Instantly share code, notes, and snippets.

@genedwards
Last active April 18, 2019 16:25
Show Gist options
  • Save genedwards/84d3a6b29915d8654a84b792d76d2633 to your computer and use it in GitHub Desktop.
Save genedwards/84d3a6b29915d8654a84b792d76d2633 to your computer and use it in GitHub Desktop.
javascript:(
function(){
const styleRules = `*:focus {
border: 1px solid cornflowerblue !important;
background-color: papayawhip !important;
}`;
const style = document.createElement('style');
style.innerText = styleRules;
document.head.appendChild(style);
}()
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment