Last active
February 25, 2018 19:33
-
-
Save vldvel/ec2f24c9a81c43aad3a7c88271bc050b 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
| .blurred-circle { | |
| animation: 3s blured-move linear infinite; | |
| } | |
| @keyframes blured-move { | |
| from { | |
| transform: rotate(0deg) translateX(2vmax) rotate(0deg); | |
| } | |
| to { | |
| transform: rotate(-360deg) translateX(2vmax) rotate(360deg); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment