Created
March 19, 2014 09:29
-
-
Save viktorViktor/9638399 to your computer and use it in GitHub Desktop.
A Pen by Viktor.
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
<input type="text" class="object"> |
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
@import "compass"; | |
.object { | |
-webkit-animation: input-error 2s; | |
-webkit-animation-iteration-count: infinite; | |
margin: 20px; | |
border: 1px solid #f0f0f0; | |
padding: 12px; | |
font-size: 16px; | |
-webkit-border-radius: 2px; | |
.object-text { | |
display: none; | |
} | |
} | |
@-webkit-keyframes input-error { | |
0% {border: 1px solid #f0f0f0;} | |
50% {border: 1px solid #999999;} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment