Created
March 26, 2012 16:46
-
-
Save boyofgreen/2206434 to your computer and use it in GitHub Desktop.
live form css
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
input:required { | |
border: 1px solid #16cc16; /*green */ | |
-moz-box-shadow: 0px 0px 11px #16cc16; | |
-webkit-box-shadow: 0px 0px 11px #16cc16; | |
box-shadow: 0px 0px 11px #16cc16; | |
outline: none; | |
} | |
input:invalid { | |
border: 1px solid #f5ba0a; /*yellow*/ | |
-moz-box-shadow: 0px 0px 11px #f5ba0a; | |
-webkit-box-shadow: 0px 0px 11px #f5ba0a; | |
box-shadow: 0px 0px 11px #f5ba0a; | |
outline:none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment