Skip to content

Instantly share code, notes, and snippets.

@rrichardsonv
Last active November 16, 2017 20:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rrichardsonv/7dbce7f7f266de4c76cd4db9aeb7e958 to your computer and use it in GitHub Desktop.
Save rrichardsonv/7dbce7f7f266de4c76cd4db9aeb7e958 to your computer and use it in GitHub Desktop.
/* body{
background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet) !important;
}
p, span, h1, h2, h3, h4, h5, div, section, article, body {
font-family: "Comic Sans MS", cursive, sans-serif !important;
}
.member_image{
-webkit-animation: spinToWin 5s infinite;
animation: spinToWin 5s infinite;
} */
/* Safari 4.0 - 8.0 */
@-webkit-keyframes spinToWin {
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}
@keyframes spinToWin {
from {transform: rotate(0deg);}
to {transform: rotate(360deg);}
}
/* a{
color: yellow !important;
}
.message_body{
background: magenta !important;
} */
@rrichardsonv
Copy link
Author

body{
background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet) !important;
}
p, span, h1, h2, h3, h4, h5, div, section, article, body {
font-family: "Comic Sans MS", cursive, sans-serif !important;
}

  .member_image{
      -webkit-animation: spinToWin 5s infinite; /* Safari 4.0 - 8.0 */
      animation: spinToWin 5s infinite;
  }

  /* Safari 4.0 - 8.0 */
  @-webkit-keyframes spinToWin {
      from {-webkit-transform: rotate(0deg);}
      to {-webkit-transform: rotate(360deg);}
  }

  @keyframes spinToWin {
      from {transform: rotate(0deg);}
      to {transform: rotate(360deg);}
  }
 a{
      color: yellow !important;
      -webkit-animation: wiggle 5s infinite; /* Safari 4.0 - 8.0 */
      animation: wiggle 5s infinite;
  }

  /* Safari 4.0 - 8.0 */
  @-webkit-keyframes wiggle {
      from {-webkit-transform: translateX(0px);}
      to {-webkit-transform: translateX(5px);}
  }

  @keyframes wiggle {
      from {transform: translateX(0px 0px);}
      to {transform: translateX(5px);}
  }
  .message_body{
    background: magenta !important;
  }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment