Sha256: 8b48cf0f27c8fc9b79ad19436a5d3bf3b81a21b2c2fe7a23f4cabed587a3e092

Contents?: true

Size: 660 Bytes

Versions: 1

Compression:

Stored size: 660 Bytes

Contents

@-moz-keyframes test {
  0%, 100% {
    background-color: red; }

  50% {
    background-color: blue; } }

@-webkit-keyframes test {
  0%, 100% {
    background-color: red; }

  50% {
    background-color: blue; } }

@-o-keyframes test {
  0%, 100% {
    background-color: red; }

  50% {
    background-color: blue; } }

@-ms-keyframes test {
  0%, 100% {
    background-color: red; }

  50% {
    background-color: blue; } }

@keyframes test {
  0%, 100% {
    background-color: red; }

  50% {
    background-color: blue; } }

.animation {
  -webkit-animation: test;
  -moz-animation: test;
  -ms-animation: test;
  -o-animation: test;
  animation: test; }

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
compass-0.13.alpha.0 test/fixtures/stylesheets/compass/css/animation.css