Last active
April 18, 2019 16:25
-
-
Save genedwards/84d3a6b29915d8654a84b792d76d2633 to your computer and use it in GitHub Desktop.
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
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