Created
July 10, 2015 07:48
-
-
Save fentas/fe25fc222a110b2f4713 to your computer and use it in GitHub Desktop.
From http://callmenick.com/post/various-css-input-text-styles
input thick border
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
.style-2 input[type="text"] { | |
padding: 10px; | |
border: solid 5px #c9c9c9; | |
transition: border 0.3s; | |
} | |
.style-2 input[type="text"]:focus, | |
.style-2 input[type="text"].focus { | |
border: solid 5px #969696; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment