mirisuzanne / compass-animation

css3 animation plugin for compass
Other
362 stars 35 forks source link

The pure css example in the readme.mdown has an @include which should not be there #12

Closed mariusGundersen closed 11 years ago

mariusGundersen commented 11 years ago

on line 98, it should read:

@keyframes my-animation {
  0%, 100% {
    background-color: blue;
  }
  50% {
    background-color: red;
  }
}

body {
  animation: my-animation 10s infinite;
}
mirisuzanne commented 11 years ago

Fixed by 6511a1dd131d283d66319f131d1fb6ab91b31ef5

mirisuzanne commented 11 years ago

Thanks!