Skip to content

Instantly share code, notes, and snippets.

@rrichardsonv
Last active August 21, 2018 15:27
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/09df45442428da954f6e62f4f1ce8f05 to your computer and use it in GitHub Desktop.
Save rrichardsonv/09df45442428da954f6e62f4f1ce8f05 to your computer and use it in GitHub Desktop.
.c-virtual_list__scroll_container {
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);}
}
.c-message {
background: magenta !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment