Skip to content

Instantly share code, notes, and snippets.

@smuniza1
Created October 18, 2015 20:58
Show Gist options
  • Save smuniza1/a8de7da7e42a484a5702 to your computer and use it in GitHub Desktop.
Save smuniza1/a8de7da7e42a484a5702 to your computer and use it in GitHub Desktop.
<style>
/* Colors */
body {
background: url(http://i.imgur.com/aZty7Mq.png);
animation: mymove 4s linear infinite;
-webkit-animation: mymove 4s linear infinite;
-moz-animation: mymove 4s linear infinite;
}
@keyframes mymove {
0% { background-position: 0 0; }
50% { background-position: 40% 0; }
}
#dark_sun {
position: absolute;
width: 300px;
height: 300px;
top: 20%;
left: 10%;
}
#sun {
position: absolute;
width: 300px;
height: 300px;
top: 20%;
left: 10%;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment