Created
October 18, 2015 20:58
-
-
Save smuniza1/a8de7da7e42a484a5702 to your computer and use it in GitHub Desktop.
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> | |
/* 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