Skip to content

Instantly share code, notes, and snippets.

@M-J-Robbins
Last active March 13, 2018 13:46
Show Gist options
  • Save M-J-Robbins/e87718699957acb59fdd3cbbb5999081 to your computer and use it in GitHub Desktop.
Save M-J-Robbins/e87718699957acb59fdd3cbbb5999081 to your computer and use it in GitHub Desktop.
<style scoped="">
#AOLMsgPart_2_3cff986d-15e6-44d8-8109-0b9a46c8166a td {
color: black;
}
.aolReplacedBody .aolmail_test{
height: 100px;
width: 100px;
background: red;
animation: colour-change 1s infinite;
}
@keyframes colour-change {
0% {
background: red;
}
33.aolmail_33% {
background: green;
}
66.aolmail_66% {
background: yellow;
}
100% {
background: blue;
}
}
</style>
<div class="aolReplacedBody">
<div class="aolmail_test">
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment