Is there any way to find the default styling for input text field glow?

css

Solution

chrome has the outline style for inputs as default. i have to disable that rule for many projects.

use the chrome developer tool to see the browser style rules.

see how to do this here:

chrome developer tool info

Problem

You know that sexy glow that surrounds an input field whenever it has focus? Without going into too much detail, I need to recreate that effect outside of an input field, but I can't seem to find the stylesheet that dictates such an effect anywhere. (I know how to do it, using the outline property and so on. I'm just wondering if there's a way I can find the EXACT values used by default for input text fields.)

Original source