Skip to content

Instantly share code, notes, and snippets.

@agaerig
Created February 27, 2013 22:09
Show Gist options
  • Select an option

  • Save agaerig/5052268 to your computer and use it in GitHub Desktop.

Select an option

Save agaerig/5052268 to your computer and use it in GitHub Desktop.
@keyframes colorPulse {
0% {color: red;}
50% {color: blue;}
100% {color: green;}
}
@-webkit-keyframes colorPulse {
0% {color: red;}
50% {color: blue;}
100% {color: green;}
}
@-moz-keyframes colorPulse {
0% {color: red;}
50% {color: blue;}
100% {color: green;}
}
@-o-keyframes colorPulse {
0% {color: red;}
50% {color: blue;}
100% {color: green;}
}
#get-your-tickets {
float: left;
width: 140px;
margin: 0 20px 0 0;;
text-align: right;
font-family: $gothic;
font-size: 2.7em;
color: $red;
text-align: justify;
text-transform: uppercase;
letter-spacing: 0.08em;
line-height: 1.3em;
animation: colorPulse 3s infinite alternate;
-moz-animation: colorPulse 3s infinite alternate;
-o-animation: colorPulse 3s infinite alternate;
-webkit-animation: colorPulse 3s infinite alternate;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment