sublte animation on bracket match

This commit is contained in:
Justin Palmer
2013-02-06 13:40:12 -08:00
parent d52e3d5a97
commit cec0757f55

View File

@@ -1,4 +1,12 @@
.bracket-matcher {
position: absolute;
border-bottom: 1px solid #f8de7e;
@-webkit-keyframes bracketmatch {
from { border-bottom-color: transparent; }
to { border-bottom-color: lime; }
}
.bracket-matcher {
border-bottom: 1px dotted lime;
position: absolute;
-webkit-animation-name: bracketmatch;
-webkit-animation-duration: 0.15s;
-webkit-animation-iteration-count: 2;
}