Last active
August 29, 2015 14:19
-
-
Save au5ton/ca42007637a1014064ce to your computer and use it in GitHub Desktop.
ItsLearning Bug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type="text/css"> | |
* | |
{ | |
font-family:"Comic Sans MS",sans-serif; | |
-webkit-animation:rainbow 2.5s infinite; | |
animation:rainbow 2.5s infinite; | |
text-shadow:1px 1px 5px #000 | |
} | |
@-webkit-keyframes rainbow | |
{ | |
0% | |
{ | |
color:red | |
} | |
9.09% | |
{ | |
color:#ff0080 | |
} | |
18.18% | |
{ | |
color:#f0f | |
} | |
27.27% | |
{ | |
color:#8000ff | |
} | |
36.36% | |
{ | |
color:#00f | |
} | |
45.45% | |
{ | |
color:#0080ff | |
} | |
54.54% | |
{ | |
color:#0ff | |
} | |
63.63% | |
{ | |
color:#00ff80 | |
} | |
72.72% | |
{ | |
color:#0f0 | |
} | |
81.81% | |
{ | |
color:#80ff00 | |
} | |
90.90% | |
{ | |
color:#ff0 | |
} | |
100% | |
{ | |
color:#ff8000 | |
} | |
} | |
@keyframes rainbow | |
{ | |
0% | |
{ | |
color:red | |
} | |
9.09% | |
{ | |
color:#ff0080 | |
} | |
18.18% | |
{ | |
color:#f0f | |
} | |
27.27% | |
{ | |
color:#8000ff | |
} | |
36.36% | |
{ | |
color:#00f | |
} | |
45.45% | |
{ | |
color:#0080ff | |
} | |
54.54% | |
{ | |
color:#0ff | |
} | |
63.63% | |
{ | |
color:#00ff80 | |
} | |
72.72% | |
{ | |
color:#0f0 | |
} | |
81.81% | |
{ | |
color:#80ff00 | |
} | |
90.90% | |
{ | |
color:#ff0 | |
} | |
100% | |
{ | |
color:#ff8000 | |
} | |
} | |
</style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Copy and paste everything below this line to use on ItsLearning --> | |
<style type="text/css">*{font-family:"Comic Sans MS",sans-serif;-webkit-animation:rainbow 2.5s infinite;animation:rainbow 2.5s infinite;text-shadow:1px 1px 5px #000}@-webkit-keyframes rainbow{0%{color:red}9.09%{color:#ff0080}18.18%{color:#f0f}27.27%{color:#8000ff}36.36%{color:#00f}45.45%{color:#0080ff}54.54%{color:#0ff}63.63%{color:#00ff80}72.72%{color:#0f0}81.81%{color:#80ff00}90.90%{color:#ff0}100%{color:#ff8000}}@keyframes rainbow{0%{color:red}9.09%{color:#ff0080}18.18%{color:#f0f}27.27%{color:#8000ff}36.36%{color:#00f}45.45%{color:#0080ff}54.54%{color:#0ff}63.63%{color:#00ff80}72.72%{color:#0f0}81.81%{color:#80ff00}90.90%{color:#ff0}100%{color:#ff8000}} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment