Created
June 22, 2015 22:24
-
-
Save kozhin/2e5b668fc80c1d12cf21 to your computer and use it in GitHub Desktop.
Input elements types
This file contains 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
textarea, | |
input[type="text"], | |
input[type="password"], | |
input[type="datetime"], | |
input[type="datetime-local"], | |
input[type="date"], | |
input[type="month"], | |
input[type="time"], | |
input[type="week"], | |
input[type="number"], | |
input[type="email"], | |
input[type="url"], | |
input[type="search"], | |
input[type="tel"], | |
input[type="color"], | |
.uneditable-input { | |
border-color: rgba(0, 0, 0, .5); | |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(126, 239, 104, 0.6); | |
outline: 0 none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment